@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/archivo-v25-latin-ext-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/archivo-v25-latin-ext-500.woff2') format('woff2'); 
}

@font-face {
  font-display: swap;
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/archivo-v25-latin-ext-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/archivo-v25-latin-ext-700.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/archivo-v25-latin-ext-800.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter-v20-latin-ext-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/inter-v20-latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/inter-v20-latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inter-v20-latin-ext-700.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/inter-v20-latin-ext-800.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/space-grotesk-v22-latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/space-grotesk-v22-latin-ext-500.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/space-grotesk-v22-latin-ext-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/space-grotesk-v22-latin-ext-700.woff2') format('woff2'); 
}


:root{
    --black: #0D1512;
    --green: #2EBD6B;
    --yellow: #2EBD6B;
    --blue: #3A7BFF;
    --red: #E5484D;
    --white: #F4F7F2;

    --font-display: 'Archivo', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-data: 'Space Grotesk', sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  min-height: 100vh;
}

main,
.fr-page {
  flex: 1 0 auto;
}


h1, h2, .hero-title, .team-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.score, .points, .countdown, .standings-table td.numeric {
  font-family: var(--font-data);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

strong, .emphasis {
  font-weight: 600;
}

.fr-label{
  font-family: var(--font-data) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.fr-input {
  width: 100%;
  background: rgba(244, 247, 242, 0.05);
  border: 1px solid rgba(244, 247, 242, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-data) !important;
  font-size: 0.95rem;
  color: var(--white) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fr-input::placeholder {
  color: rgba(244, 247, 242, 0.35);
}

.fr-input:hover:not(:disabled):not(.fr-input--error) {
  border-color: var(--yellow)
}

.fr-input:focus {
  outline: none;
  background: rgba(108, 230, 27, 0.01);
  border-color: var(--yellow);
  box-shadow: none;
}

.fr-input:disabled {
  background: rgba(244, 247, 242, 0.03);
  border-color: var(--yellow);
  color: rgba(244, 247, 242, 0.3);
  cursor: not-allowed;
}

.fr-input:disabled::placeholder {
  color: rgba(244, 247, 242, 0.2);
}

.fr-input.fr-input--error {
  border-color: var(--red);
  background: rgba(229, 72, 77, 0.06);
  color: var(--white);
}

.fr-input.fr-input--error:focus {
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.25);
}

.fr-input-error-text {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--red);
}

.fr-input-wrap {
  position: relative;
}

.fr-input-wrap .fr-input {
  padding-left: 2.5rem;
}

.fr-input-wrap .fr-input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(244, 247, 242, 0.4);
  pointer-events: none;
  display: flex;
}

.fr-input-wrap .fr-input:focus ~ .fr-input-icon {
  color: var(--blue);
}


.fr-desktop-only-notice {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.fr-desktop-only-notice img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
}

.fr-desktop-only-notice h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.fr-desktop-only-notice p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 247, 242, 0.6);
  max-width: 340px;
}

@media (max-width: 1024px) {
  body > *:not(.fr-desktop-only-notice) {
    display: none !important;
  }

  .fr-desktop-only-notice {
    display: flex;
  }
}

.fr-check {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(244, 247, 242, 0.05);
  border: 1.5px solid rgba(244, 247, 242, 0.25);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fr-check:hover {
  border-color: var(--yellow);
}

.fr-check:checked {
  background: var(--yellow);
  border-color: var(--yellow);
}

.fr-check:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fr-check:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 169, 58, 0.25);
}

.fr-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.5;
}
select.fr-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F4F7F2' fill-opacity='0.5' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select.fr-input option {
  background: #16211c;
  color: var(--white);
}

.fr-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(13, 21, 18, 0.82);
  backdrop-filter: blur(6px);
  animation: fr-loader-in 0.2s ease;
}

.fr-page-loader[hidden] { display: none; }

.fr-loader-logo {
  height: 42px;
  width: auto;
  opacity: 0.9;
}

.fr-loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(244, 247, 242, 0.12);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: fr-loader-spin 0.7s linear infinite;
}

@keyframes fr-loader-spin { to { transform: rotate(360deg); } }
@keyframes fr-loader-in { from { opacity: 0; } to { opacity: 1; } }




.fr-custom-dd {
  position: relative;
  width: 110px;
  user-select: none;
}

.fr-dd-trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fr-dd-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.fr-dd-trigger iconify-icon {
  font-size: 16px;
  transition: transform 0.2s ease;
  color: rgba(255, 255, 255, 0.4);
}

.fr-custom-dd.is-open .fr-dd-trigger {
  border-color: #F0A93A;
  background: rgba(240, 169, 58, 0.05);
}

.fr-custom-dd.is-open .fr-dd-trigger iconify-icon {
  transform: rotate(180deg);
  color: #F0A93A;
}

.fr-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #14201A; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fr-custom-dd.is-open .fr-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fr-dd-menu ul {
  list-style: none;
  padding: 4px;
  margin: 0;
}

.fr-dd-item {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.fr-dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.fr-dd-item.is-selected {
  background: #F0A93A;
  color: #0D1512;
  font-weight: 600;
}

.fr-custom-dd.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

.fr-dd-menu::-webkit-scrollbar {
  width: 4px;
}
.fr-dd-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.fr-dd-value {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fr-dd-value img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }

.fr-dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fr-dd-item img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }

#frFavDd { width: 180px; }