:root {
  --bg: #06110d;             /* Deepest forest emerald-black */
  --bg-gradient: radial-gradient(circle at top, #0f2a20 0%, #06110d 100%);
  --ink: #e6f3ef;            /* Bright clean mint-white text */
  --muted: #829a92;          /* Sage gray for secondary labels */
  --line: rgba(255, 255, 255, 0.08); /* Glow separator border */
  --brand: #10b981;          /* Vibrant emerald green */
  --brand-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --brand-glow: rgba(16, 185, 129, 0.25);
  --gold: #fbbf24;           /* Warm yellow gold */
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gold-glow: rgba(251, 191, 3, 0.35);
  --paper: #0b1f19;          /* Translucent card background */
  --paper-hover: #112d25;    /* Hover state card background */
  --rose: #f43f5e;           /* Coral red accent for eyebrows */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--ink);
  font: 16px/1.65 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--brand);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
  z-index: 10;
}

/* Translucent Sticky Header with Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 54px);
  background: rgba(6, 17, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}

.logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--brand-glow));
}

.logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  display: none;
}

.site-header nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Navigation Links & Buttons */
.site-header nav a,
.header-cta,
.button,
.related a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header nav a:hover,
.button:hover,
.related a:hover {
  border-color: var(--brand);
  background: rgba(16, 185, 129, 0.08);
  color: var(--brand);
  transform: translateY(-1px);
}

/* Active Page states and primary buttons */
.site-header nav a[aria-current=page],
.primary,
.header-cta {
  background: var(--brand-gradient);
  color: #030807;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--brand-glow);
}

.site-header nav a[aria-current=page]:hover,
.primary:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: #030807;
}

.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 70px;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.88rem;
}

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

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.25);
  margin-left: 8px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.breadcrumb li[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* Hero Section - Full-Width Banner Overhaul */
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 8vw, 110px) 24px;
  background: #06110d;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--line);
}

.hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) contrast(1.1); /* Dark overlay for text legibility */
  transition: transform 0.5s ease;
}

.hero:hover picture img {
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin: 14px 0 22px;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--gold);
  margin: -12px 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 12px rgba(251, 191, 3, 0.4);
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #cfede2;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.hero .eyebrow {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Custom rounded action buttons in hero */
.hero-actions .button {
  min-height: 48px;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
}

.hero-actions .primary {
  background: var(--gold-gradient);
  color: #030807;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px var(--gold-glow);
}

.hero-actions .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(251, 191, 3, 0.5);
  color: #030807;
}

/* Common Section Wrapper */
section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 8px;
  font-weight: 700;
}

/* Premium Facts Tables */
.facts {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.facts th,
.facts td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.facts th {
  background: rgba(16, 185, 129, 0.06);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.facts tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* Glowing Checklists */
.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 20px 0;
}

.check-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.check-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 3, 0.5);
  box-shadow: 0 8px 20px rgba(251, 191, 3, 0.08);
}

/* Slot Game Cards (Glossy Lobby Look) */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 24px;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px var(--brand-glow);
}

.game-link {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.game-link:hover img {
  transform: scale(1.06);
}

/* Game Posters with rounded fit and covers */
.game-card img {
  display: block;
  width: 100%;
  height: clamp(210px, 24vw, 290px);
  object-fit: cover;
  object-position: center;
  background: #040c09;
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-card div {
  padding: 14px;
}

.game-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.game-card p {
  font-size: .88rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* Sitemap Link Maps & Subpages */
.link-map {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  margin: 40px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.link-map .eyebrow {
  margin: 0 0 8px;
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.next-links span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.next-links a,
.link-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  padding: 7px 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 0.25s ease;
}

.next-links a:hover,
.link-card a:hover {
  border-color: var(--brand);
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand);
}

.next-links a.is-current,
.link-card a.is-current {
  border-color: var(--brand);
  background: var(--brand-gradient);
  color: #030807;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.link-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.link-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.link-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* FAQ Accordion Accordion styling */
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease;
}

details[open] {
  border-color: var(--brand);
}

summary {
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
  color: var(--ink);
}

summary:hover {
  color: var(--brand);
}

details p {
  margin: 12px 0 0;
  color: #a3c4b9;
}

/* Footer Section */
footer {
  background: #040a08;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 45px clamp(16px, 4vw, 54px);
  margin-top: 50px;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto 16px;
  max-width: 960px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 auto 20px;
  max-width: 960px;
}

footer a {
  color: var(--ink);
  margin: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
  display: inline-block;
}

footer a:hover {
  color: var(--brand);
  text-decoration: underline;
}

footer nav {
  margin-top: 24px;
}

/* Floating Sticky Mobile / Desktop CTA Button */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--gold-gradient);
  color: #030807;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px var(--gold-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 99;
}

.sticky-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(251, 191, 3, 0.5);
  color: #030807;
}

/* Responsive Grid and breakpoints */
@media (min-width: 980px) {
  .game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .breadcrumb {
    display: none;
  }

  .hero {
    padding: 40px 16px;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .header-cta {
    position: static;
    margin-left: auto;
    margin-right: 12px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 101;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 17, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 16px;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  }

  .site-header.nav-open nav {
    display: flex;
  }

  .site-header nav a {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .game-card img {
    height: clamp(190px, 30vw, 240px);
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    border-radius: 8px;
  }
}
