/* =========================================================
   HOME PAGE ONLY STYLES
========================================================= */

   .hero-row {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

    /* Slider - Start */

.slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 380px;
  background: #0f0f0f;
  height: 100%;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 400%;
  height: 100%;
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.slide {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #101010;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1);
  animation: slideZoom 7s ease-in-out infinite;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0.12) 46%,
    rgba(0,0,0,0.28) 100%
  );
  z-index: 1;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-link img {
  cursor: pointer;
}

@keyframes slideZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: grid;
  align-items: center;
  padding: 28px 32px 72px;
  max-width: 760px;
}

.slide-content h1,
.slide-content h2 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  max-width: 680px;
}

.slide-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  line-height: 1.7;
  margin: 18px 0 0;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Slider Dots */

.slider-dots {
  position: absolute;
  left: 28px;
  bottom: 22px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  background: white;
  border-color: white;
}

/* Slider Arrows */

.slider-arrows {
  position: absolute;
  right: 22px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.38);
  display: grid;
  place-items: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.14);
}

/* Slider - End */

.eyebrow {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.82);
      background: rgba(255,255,255,0.08);
      margin-bottom: 14px;
    }
    
    .hero-side {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      height: 100%;
      min-height: 380px;
    }

    .side-card {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      box-shadow: var(--shadow);
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .side-label {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .side-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .side-card p {
      margin: 10px 0 16px;
      color: rgba(255,255,255,0.78);
      line-height: 1.4;
      font-size: 13px;
    }

    .side-card .btn {
      width: fit-content;
      margin-top: auto;
    }

    .middle-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
      margin-bottom: 24px;
    }

    .middle-card {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .middle-label {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .middle-card h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .middle-card p {
      margin: 12px 0 18px;
      color: rgba(255,255,255,0.78);
      line-height: 1.5;
      font-size: 15px;
    }

    .result-score {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.28);
}

    .result-score .team {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.7);
    }

    .result-score .score {
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .result-score .divider {
      color: rgba(255,255,255,0.35);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.result-outcome {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
    .lower-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 24px;
      margin-top: 24px;
    }

    .history {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      min-height: 320px;
      position: relative;
    }

    .history img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 34%;
      opacity: 0.44;
      transform: scale(0.9);
    }

    .history::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.76));
    }

    .history-content {
      position: relative;
      display: flex;
      height: 100%;
      min-height: 320px;
      flex-direction: column;
      justify-content: end;
      padding: 24px;
    }

    .history h2 {
      margin: 0;
      font-size: 40px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .history p {
      margin: 12px 0 0;
      max-width: 420px;
      color: rgba(255,255,255,0.86);
      font-size: 18px;
      line-height: 1.45;
    }

    .history .btn-secondary {
      width: fit-content;
      margin-top: 22px;
    }

 /* News Cards Styles - Start */
 
    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

.news-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.news-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  padding: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}

.news-inner-card {
  margin-top: 2px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease;
}

.news-inner-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.news-inner-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.news-inner-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  font-size: 14px;
}

.agm-inner {
  padding: 10px;
  background: #101010;
  align-items: center;
}

.agm-inner img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 10px;
}
 /* News Cards Styles - End */

    .results-section {
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #181818;
  box-shadow: var(--shadow);
  padding: 22px;
}

.section-header {
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.section-sub {
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.middle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Styles (Mobile) - Start */

@media (max-width: 1100px) {

  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .hero-row,
  .middle-strip,
  .lower-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-rows: auto;
    min-height: auto;
  }
}

@media (max-width: 720px) {

  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
  }

  .topbar-right {
    display: none;
  }

  .content {
    padding: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-sub {
    font-size: 26px;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    order: -1;
  }

  .mobile-menu {
    display: none;
    padding: 16px 18px 20px;
    background: #101010;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 14px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 800;
  }

  .slider-shell {
    min-height: 0;
    height: calc((100vw - 36px) * 0.5625);
    max-height: 260px;
  }

  .slider-track {
    height: 100%;
  }

  .slide,
  .slide-link {
    height: 100%;
    min-height: 0;
  }

  .slide-content {
    display: none;
  }

  .slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 34px;
  }

  .slider-dots {
    left: 20px;
    bottom: 18px;
  }

  .slider-arrows {
    right: 18px;
    bottom: 14px;
  }

  .sponsors-strip {
    grid-template-columns: 1fr;
  }
}

/* Responsive Styles (Mobile) - End */


.result-team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-team.right {
  justify-content: flex-end;
  text-align: right;
}

.result-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}    
  </style>
<!-- Style Section - End --> 