/* =========================
   PAGE NAVIGATION
   ========================= */
/* Desktop nav base */
.pagenav-desktop {
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 1000;
}

/* Container */
.pagenav-list {
  list-style: none;
  padding: 10px 8px;
  margin: 0;

  background: rgba(0, 0, 0, 0.35); 
  backdrop-filter: blur(1px);
  border-radius: 16px;

  transform: translateX(-4px);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  border: 1px solid #aaa3;
}

/* When hovering menu → more readable */
.pagenav-desktop:hover .pagenav-list {
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(0);
}

/* Links */
.pagenav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 10px;
  display: block;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

/* Hover */
.pagenav-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Active (scroll spy) */
.pagenav-link.active {
  background: rgb(255 163 42 / 35%);
  color: #fff;
  font-weight: 600;
}

/* Locked */
.pagenav-link.locked {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Separator */
.pagenav-separator {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 8px 0;
}

.pagenav-fanid {
  padding: 6px 10px;
}

.pagenav-fanid-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.pagenav-fanid-links {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagenav-fanid-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pagenav-fanid-link:hover {
  color: #fff;
  text-decoration: underline;
}

.pagenav-fanid-sep {
  opacity: 0.35;
}

/* =========================
   MOBILE MENU (RIGHT PANEL)
   ========================= */

.pagenav-mobile-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1001;

  background: rgba(0,0,0,0.5);
  border: none;
  padding: 8px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.pagenav-mobile-toggle:hover {
  background: rgba(0,0,0,0.65);
}

.pagenav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pagenav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.pagenav-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.pagenav-mobile-panel {
  position: fixed;
  top: 0;
  right: -260px;
  height: 100%;
  width: 200px;
  background: rgba(0,0,0,0.18);
  z-index: 1000;
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  overflow-y: auto;

  transition: right 0.3s ease, background 0.25s ease;
}

.pagenav-mobile-panel.open {
  right: 0;
  background: rgba(0,0,0,0.75);
  border-left: 1px solid #666;
}

.pagenav-mobile-list {
  list-style: none;
  padding: 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pagenav-mobile-list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.pagenav-mobile-list a:hover {
  text-decoration: underline;
}

.pagenav-mobile-list .locked {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Fan ID */
.pagenav-fanid-mobile .pagenav-fanid-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.pagenav-fanid-mobile .pagenav-fanid-links {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagenav-fanid-mobile .pagenav-fanid-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.pagenav-fanid-mobile .pagenav-fanid-link:hover {
  color: #fff;
  text-decoration: underline;
}

.pagenav-fanid-mobile .pagenav-fanid-sep {
  opacity: 0.35;
}

.pagenav-mobile-list a.active {
  color: rgb(255 163 42 / 65%);
  font-weight: 600;
}

.pagenav-mobile-list a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .pagenav-desktop {
    display: none;
  }
}

@media (min-width: 1025px) {
  .pagenav-mobile-toggle,
  .pagenav-mobile-panel {
    display: none;
  }
}

/* ========================= SLIDER ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Inter, system-ui, sans-serif; background: #000; color: #fff; }

.slider { position: relative; height: 100vh; overflow: hidden; }

.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .7s ease;
  display: flex; justify-content: center; padding: 80px 6%;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-center { align-items: center; }

.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.85),
    rgba(0,0,0,.5),
    rgba(0,0,0,.01) /* плавно уходит к низу */
  );
  pointer-events: none;
}

.content { position: relative; z-index: 2; width: 100%; max-width: 720px; margin: 0 auto; }
.content.center { max-width: 820px; }
.content h1 { font-size: clamp(34px, 6vw, 72px); margin-bottom: 24px; line-height: 1.05; }
.content h1 span { color: #e97616; }
.content p { font-size: 18px; line-height: 1.5; color: #e5e5e5; }

.actions { margin-top: 40px; display: flex; gap: 24px; flex-wrap: wrap; }
.btn.primary { background: #e97616; color: #000; padding: 16px 34px; border-radius: 999px; font-weight: 700; text-decoration: none; }
.btn.link { color: #fff; text-decoration: none; margin-top: 14px;}
.btn{text-align:center}
.nav { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 36px; z-index: 10; align-items: center; }
.arrow { border:1px solid #777;width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.6); color: #fff; font-size: 22px; }
.arrow:hover { background: rgba(50,50,50,.6);}
.dots { display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); }
.dot.active { background: #e97616; }

@media (max-width:768px){
  .slide { padding: 60px 24px; align-items: center; }
  .actions { justify-content: center; margin-bottom: 50px; }
}

@media (max-width:480px){
  .actions { margin-bottom: 0px; }
}

/* ========================= HOW TO WIN ========================= */
.how-to-win-section { background-color: #f8f8f8; color: #111; padding: 60px 6%; }
.how-to-win-section .container { max-width: 1200px; margin: 0 auto; }
.how-to-win-section h2 { font-size: clamp(32px,5vw,48px); margin-bottom:24px; text-align:center; }
.how-to-win-section .intro { max-width:740px; margin:0 auto 48px auto; text-align:center; font-size:18px; line-height:1.6; }

.steps { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.step { display:flex; gap:20px; align-items:flex-start; }
.step-icon { font-size:32px; flex-shrink:0; }
.step-text h3 { font-size:20px; margin-bottom:8px; }
.step-text p, .step-text ul { font-size:16px; line-height:1.5; margin:0; }
.step-text ul { margin:8px 0; padding-left:20px; }

.cta-buttons { margin-top:48px; display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
.btn.secondary { border: 1px solid #eee;background:#111; color:#fff; padding:16px 36px; border-radius:999px; text-decoration:none; }


.seasonal-jackpot-section {
  background-color: #e7e7e7;
  color: #111;
  padding: 60px 6%;
}

.seasonal-jackpot-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.seasonal-jackpot-section h2 {
  font-size: clamp(32px,5vw,48px);
  margin-bottom: 24px;
  text-align: center;
}

.seasonal-jackpot-section .intro {
  max-width: 700px;
  margin: 0 auto 48px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* Desktop grid */
.jackpot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.jackpot-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.jackpot-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.jackpot-step p, .jackpot-step ul {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.jackpot-step ul {
  padding-left: 20px;
  margin-top: 8px;
}

.jackpot-step ul li strong {
  color: #e97616;
  font-weight: 700;
}

.jackpot-visual img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* CTA Buttons */
.cta-buttons {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
/*
.btn.primary {
  background: #e97616;
  color: #000;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn.secondary {
  background: #111;
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
}
*/


.gameday-jackpot-section {
  background-color: #f5f5f5;
  color: #111;
  padding: 60px 6%;
}

.gameday-jackpot-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gameday-jackpot-section h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  text-align: center;
}

.gameday-jackpot-section .intro {
  max-width: 700px;
  margin: 0 auto 48px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* Steps layout */
.jackpot-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.jackpot-step {
  display: grid;
  gap: 20px;
  align-items: flex-start;
}

.step-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-text p, .step-text ul {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.step-text ul {
  margin-top: 8px;
  padding-left: 20px;
}

.step-text ul li strong {
  color: #e97616;
  font-weight: 700;
}


/* =========================
   GAMEDAY JACKPOT BLOCK
   ========================= */

.gameday-section {
  background: #0f0f0f;
  color: #ffffff;
  padding: 60px 6%;
}

.gameday-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gameday-header {
  text-align: center;
  margin-bottom: 56px;
}

.gameday-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.gameday-intro {
  font-size: 18px;
  color: #cccccc;
}

/* Content layout */
.gameday-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Blocks */
.gameday-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 28px;
}

.gameday-block-highlight {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(234,255,42,0.12),
    rgba(255,255,255,0.04)
  );
}

.gameday-block-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.gameday-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.gameday-list {
  padding-left: 18px;
  margin: 0;
}

.gameday-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #e0e0e0;
}

/* Shot options */
.gameday-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.gameday-shot {
  background: rgba(0,0,0,0.4);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-size: 16px;
}

.gameday-shot strong {
  color: #e97616;
}

.gameday-ladder {
  margin-top: 16px;
  font-size: 16px;
}

.gameday-ladder strong {
  font-size: 20px;
  color: #e97616;
}

/* CTA */
.gameday-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}


/* Icon styling */
.gameday-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 22px;
  transform: translateY(2px);
}


/* =========================
   FORTRESS POINTS
   ========================= */

.fortress-section {
  background: #ffffff;
  color: #111;
  padding: 60px 6%;
}

.fortress-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fortress-header {
  text-align: center;
  margin-bottom: 56px;
}

.fortress-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.fortress-intro {
  font-size: 18px;
  color: #555;
}

/* Layout */
.fortress-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Blocks */
.fortress-block {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 28px;
}

.fortress-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgb(255 144 42 / 25%), rgba(246, 246, 246, 1));
}

.fortress-block-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.fortress-text {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* Lists */
.fortress-earn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fortress-earn-list li {
  display: block;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.fortress-earn-list small {
  display: block;
  color: #666;
  margin-top: 4px;
  font-size: 14px;
}

.fortress-icon {
  font-size: 20px;
  line-height: 1.2;
  margin-right: 10px;
}

.fortress-simple-list {
  padding-left: 18px;
  margin: 8px 0;
}

.fortress-simple-list li {
  margin-bottom: 6px;
}

/* Counter */
.fortress-counter {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.fortress-counter-item {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.fortress-counter-label {
  font-weight: 700;
  color: #e97616;
}


/* =========================
   FAN STATUS
   ========================= */

.fanstatus-section {
  background: #f8f8f8;
  color: #111;
  padding: 60px 6%;
}

.fanstatus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fanstatus-header {
  text-align: center;
  margin-bottom: 56px;
}

.fanstatus-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.fanstatus-intro {
  font-size: 18px;
  color: #555;
}

/* Explainer */
.fanstatus-explainer {
  max-width: 900px;
  margin: 0 auto 64px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.fanstatus-explainer-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.fanstatus-note {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* Levels */
.fanstatus-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fanstatus-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.fanstatus-card-highlight {
  border: 2px solid rgb(255 96 42 / 60%);
}

.fanstatus-badge {
  font-size: 36px;
  margin-bottom: 12px;
}

.fanstatus-level-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.fanstatus-level-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.fanstatus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fanstatus-list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Footer note */
.fanstatus-footer-note {
  max-width: 900px;
  margin: 56px auto 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}


/* =========================
   REWARDS BLOCK
   ========================= */

.block-rewards {
  padding: 60px 20px;
  background: #f1f1f1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.rewards-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom:20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rewards-intro {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards container */
.rewards-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

/* Individual card */
.rewards-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rewards-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.rewards-card-header {
  display: flex;
  align-items: center;
  gap: 12px; 
  margin-bottom: 12px;
}

.rewards-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.rewards-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

/* Card list */
.rewards-card-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Extra info */
.rewards-extra {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Accent callout */
.rewards-callout {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(0,0,0,0.04);
  border-left: 4px solid #111;
  padding: 14px 16px;
  margin: 28px auto 18px;
  max-width: 720px;

  font-size: 14px;
  color: #222;
}

.rewards-callout-icon {
  font-size: 18px;
  line-height: 1;
}

.rewards-callout-text {
  font-weight: 500;
}


/* =========================
   TOP FAN ID ISLAND
   ========================= */

.top-island {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;

  pointer-events: none;
}

.top-island-fanid {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.top-island-fanid-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}
.top-island-fanid-links {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.top-island-inner {
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 10px 20px;

  opacity: 0.65;
  transition: opacity 0.2s ease, background 0.2s ease;
  pointer-events: auto;
}

/* Hover — становится чётким */
.top-island-inner:hover {
  opacity: 1;
  background: rgba(0,0,0,0.85);
}

/* Logo */
.top-island-logo img {
  height: 42px;
  width: auto;
  display: block;
  margin: -8px;
}

/* Fan ID links */
.top-island-fanid {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.top-island-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.top-island-link:hover {
  text-decoration: underline;
}

.top-island-sep {
  margin: 0 6px;
  opacity: 0.4;
}


/* Language Island */

.lang-island {
    position: absolute;
    top: 12px;
    right: 12px;

    display: flex;
    gap: 4px;

    padding: 4px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 5;
}

.lang-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 28px;

    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;

    border-radius: 10px;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

.lang-item.active {
    background: linear-gradient(135deg, #ff6969, #ff1d1d);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 30, 30, 0.35);
    pointer-events: none;
}

/* Hero socials container */
.hero-socials {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

/* Social button */
.hero-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid #666;
}

.hero-social-link svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Hover */
.hero-social-link:hover {
  transform: translateY(-3px);
  border:1px solid #aaa;
}

/* Brand accents */
.hero-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}
.hero-social-link.facebook:hover {
  background: #1877f2;
}
.hero-social-link.tiktok:hover {
  background: #000;
  background: linear-gradient(45deg, #000, #333, #111);
}


/* SECTION */
.schedule-section {
  padding: 60px 20px;
  background: #2b2b2b;
  color: #fff;
}

/* HEADER */
.schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.schedule-intro {
  opacity: 0.85;
}

/* LIST */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: auto;
  padding: 16px;
}

/* ITEM */
.schedule-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.2s ease;
  border: 1px solid #666;
}

.schedule-item.upcoming:hover {
  background: rgba(255,255,255,0.07);
}

/* DATE */
.schedule-date {
  text-align: center;
  font-weight: 700;
}

.schedule-date .day {
  font-size: 28px;
  line-height: 1;
}

.schedule-date .month {
  font-size: 12px;
  opacity: 0.7;
}

/* INFO */
.schedule-match {
  font-size: 18px;
  margin: 0 0 6px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.schedule-icons {
  font-size: 24px;
}

.schedule-icons span {
  font-size: 16px;
}

.schedule-time {
  font-size: 14px;
  opacity: 0.9;
}

.schedule-meta {
  font-size: 13px;
  opacity: 0.7;
}

.schedule-meta.muted {
  opacity: 0.4;
}

/* ACTIONS */
.schedule-actions {
  white-space: nowrap;
}

.schedule-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 13px;
  cursor: pointer;
}

/* STATES */
.schedule-item.past {
  opacity: 0.45;
}

.schedule-item.featured {
  outline: 1px solid rgb(230 113 36);
  border: 0px;
}

/* NOTE */
.schedule-note {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.75;
  text-align: center;
}

/* LOADER */
.schedule-loader {
  text-align: center;
  opacity: 0.6;
  padding: 30px;
}

.next-game-badge {
  background: #fff;
  color: #000;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  margin-left: 8px;
  font-weight: 700;
  text-align: center;
}

/* MOBILE */
@media (max-width: 600px) {
  .schedule-item {
    grid-template-columns: 60px 1fr;
  }

  .schedule-actions {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-socials {
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    gap: 8px;
    width: 36px;
  }

  .hero-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .hero-social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile */
@media (max-width:768px){
  .steps { grid-template-columns:1fr; }
  .step-icon { font-size:28px; }
  .how-to-win-section { padding:60px 4%; }
  .cta-buttons { flex-direction:column; gap:16px; }
  
  .jackpot-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .jackpot-visual img {
    max-height: 300px;
    object-fit: contain;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .jackpot-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-icon {
    font-size: 28px;
  }
  .gameday-jackpot-section {
    padding: 60px 4%;
  }
  .gameday-section {
    padding: 72px 4%;
  }

  .gameday-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gameday-block-highlight {
    grid-column: auto;
  }

  .gameday-shots {
    grid-template-columns: 1fr;
  }

  .gameday-title {
    font-size: 32px;
  }
  .fortress-section {
    padding: 72px 4%;
  }

  .fortress-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fortress-highlight {
    grid-column: auto;
  }

  .fortress-title {
    font-size: 32px;
  }
  
  .fanstatus-section {
    padding: 72px 4%;
  }

  .fanstatus-levels {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fanstatus-card {
    padding: 28px 22px;
  }

  .fanstatus-title {
    font-size: 32px;
  }
  
  .rewards-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .rewards-card {
    padding: 18px 16px;
  }
  .top-island {
    top: 10px;
  }

  .top-island-inner {
    padding: 8px 16px;
    gap: 20px;
  }

  .top-island-logo img {
    height: 42px;
  }

  .top-island-fanid {
    font-size: 12px;
  }
}



