@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #061113;
  --surface: #0b1f20;
  --surface-2: #102b2a;
  --text: #f4f7f4;
  --muted: #abc2bc;
  --accent: #00c88c;
  --accent-hover: #35eab3;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --border: #1e4540;
  --danger: #ffc857;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 18px/1.65 var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 851px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--accent-hover);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(53, 234, 179, 0.4);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #03110d;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
  transition: left 0.2s ease;
}

.skip:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 17, 19, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  max-width: 1200px;
  margin: auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  width: 172px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.3rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-2);
  color: #ffffff;
  border-bottom: 2px solid var(--accent);
}

.wrap {
  max-width: 1140px;
  margin: auto;
  padding: 0 1.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(6, 17, 19, 0.88) 0%, rgba(6, 17, 19, 0.65) 55%, rgba(6, 17, 19, 0.25) 100%),
              url('../foto/hero-bg.jpg') center/cover no-repeat,
              url('foto/hero-bg.jpg') center/cover no-repeat;
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
}


.eyebrow {
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.hero h1, h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0.2em 0 0.45em;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero h1, h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero p.lead {
  max-width: 720px;
  font-size: 1.2rem;
  color: #e4ebe7;
  line-height: 1.6;
}

.status-card {
  background: rgba(11, 31, 32, 0.96);
  border: 1px solid var(--gold);
  border-top: 5px solid var(--gold);
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.action-panel {
  background: linear-gradient(145deg, rgba(16, 43, 42, 0.95) 0%, rgba(6, 17, 19, 0.98) 100%);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.action-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.action-sub {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-hover);
  margin-top: 0.3rem;
  line-height: 1.2;
}

.action-desc {
  font-size: 0.96rem;
  color: #e4ebe7;
  margin: 0.9rem 0 1.4rem;
  line-height: 1.55;
}

.cta-btn {
  background: var(--accent) !important;
  color: #03110d !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  padding: 0.85rem 1.4rem !important;
  border-radius: 8px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(0, 200, 140, 0.3) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.2s ease !important;
}

.cta-btn:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(53, 234, 179, 0.4) !important;
}

.offer-card {
  background: rgba(11, 31, 32, 0.85);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.3rem 1.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.offer-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 200, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offer-title {
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-value {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 0.98;
  margin-top: 0.45rem;
  text-shadow: 0 4px 24px rgba(0, 200, 140, 0.25);
}

.offer-sub {
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 750;
  margin-top: 0.55rem;
}

.offer-meta {
  color: #c6d4cf;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-top: 0.65rem;
}

.hero-bonus-cta {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}


.promo-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.02em;
}

.promo-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.3rem;
}

.promo-sub em {
  color: var(--accent-hover);
  font-style: normal;
}

.promo-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
  border-top: 1px solid rgba(30, 69, 64, 0.6);
  padding-top: 0.4rem;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.hero-feat {
  background: rgba(11, 31, 32, 0.7);
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-feat strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.hero-feat span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.status-card strong {
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.status-card p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #03110d;
  text-decoration: none;
  font-weight: 800;
  padding: 0.8rem 1.25rem;
  border-radius: 6px;
  margin: 0.35rem 0.4rem 0.35rem 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 200, 140, 0.3);
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 140, 0.5);
  color: #03110d;
}

.button.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: #ffffff;
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 1.2rem 0 0.4rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent-hover);
}

.page-intro {
  padding: 2.8rem 0 1.5rem;
}

.page-intro h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
}

main section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

main h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #ffffff;
  position: relative;
}

main h3 {
  font-size: 1.55rem;
  color: var(--accent-hover);
}

.lead {
  font-size: 1.25rem;
  color: #e4ebe7;
  max-width: 920px;
}

.answer {
  border-left: 5px solid var(--accent);
  background: var(--surface);
  padding: 1.25rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.answer strong {
  color: var(--accent-hover);
}

.notice {
  border: 1px solid var(--gold);
  background: #1f1b10;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.notice strong {
  color: var(--danger);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.fact {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 8px;
}

.fact b {
  display: block;
  color: var(--accent-hover);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

th, td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0.95rem 1.1rem;
}

th:last-child, td:last-child {
  border-right: none;
}

tr:last-child td {
  border-bottom: none;
}

th {
  background: var(--surface-2);
  color: var(--accent-hover);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

tbody tr:hover {
  background: rgba(16, 43, 42, 0.6);
}

ol.steps, ul.checks {
  padding-left: 1.4rem;
}

ol.steps li, ul.checks li {
  margin: 0.75rem 0;
  padding-left: 0.35rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0.75rem 0;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq details[open] {
  border-color: var(--accent);
  background: var(--surface-2);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.08rem;
  outline: none;
}

.faq summary:hover {
  color: var(--accent-hover);
}

.faq details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.source-note {
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  margin: 1.75rem 0 2.25rem;
  padding: clamp(0.85rem, 2vw, 1.4rem);
  background:
    radial-gradient(circle at 50% 0, rgba(212, 175, 55, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(16, 43, 42, 0.88), rgba(5, 18, 19, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.26);
}

.game-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  background: #071716;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.34);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.82);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.52), 0 0 24px rgba(212, 175, 55, 0.13);
  color: #ffffff;
  text-shadow: none;
}

.game-card:focus-visible {
  outline: 3px solid var(--accent-hover);
  outline-offset: 4px;
}

.game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 226 / 338;
  object-fit: cover;
  background: var(--surface);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.game-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.28), transparent 2px),
    linear-gradient(180deg, transparent 52%, rgba(3, 12, 12, 0.2) 66%, rgba(3, 12, 12, 0.96) 100%);
}

.game-card::after {
  content: 'PLAY NOW  ›';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
  min-width: max-content;
  background: rgba(0, 200, 140, 0.94);
  color: #03110d;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.72rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 200, 140, 0.38);
  pointer-events: none;
  z-index: 3;
}

.game-card:hover::after,
.game-card:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.game-card--info::after {
  content: 'VIEW GUIDE  ›';
}

.game-card strong {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 4.6rem;
  padding: 1.6rem 0.78rem 0.72rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.05;
  text-align: left;
  color: #ffffff;
  text-shadow: 0 2px 8px #000000;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3.5rem;
  background: #040e10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.8rem 1.2rem;
}

.site-footer h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-top: 0;
}

.site-footer p, .site-footer a {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

.legal-strip {
  border-top: 1px solid var(--border);
  padding: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(6, 17, 19, 0.96);
  border-top: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  backdrop-filter: blur(12px);
  gap: 0.5rem;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-sticky-bar .bar-btn {
  flex: 1;
  text-align: center;
  background: var(--accent);
  color: #03110d;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.6rem;
  border-radius: 6px;
  max-width: 340px;

}

.mobile-sticky-bar .bar-btn.secondary {
  background: var(--surface-2);
  color: #ffffff;
  border: 1px solid var(--border);
}

body {
  padding-bottom: 74px;
}

/* Mobile Menu Toggle Button */
.nav-toggle {
  display: none;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.nav-toggle:hover, .nav-toggle:focus {
  background: var(--surface);
  border-color: var(--accent);
  color: #ffffff;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

.table-wrapper table {
  margin: 0;
  border: none;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .nav {
    min-height: 64px;
    padding: 0.6rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 17, 19, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.8rem 1rem 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--surface-2);
    border-left-color: var(--accent);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    gap: 2rem;
  }

  .hero h1, h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .grid, .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .wrap {
    padding: 0 1rem;
  }

  .brand img {
    width: 140px;
  }

  .promo-value {
    font-size: 1.75rem;
  }

  .promo-sub {
    font-size: 0.95rem;
  }

  .hero-feat {
    padding: 0.65rem 0.8rem;
  }

  .grid, .fact-grid {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-left: -0.35rem;
    margin-right: -0.35rem;
    padding: 0.65rem;
    border-radius: 14px;
  }

  .game-card {
    border-radius: 11px;
  }

  .game-card strong {
    min-height: 4rem;
    padding: 1.35rem 0.58rem 0.58rem;
    font-size: 0.9rem;
  }

  .status-card {
    padding: 1.2rem;
  }

  .button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.6rem;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  .badge-chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .faq summary {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  th, td {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-card,
  .game-card img,
  .game-card::after {
    transition: none;
  }

  .game-card:hover,
  .game-card:hover img {
    transform: none;
  }
}
