@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  --ss-deep: #071c24;
  --ss-navy: #0b3d4a;
  --ss-teal: #146878;
  --ss-mint: #6fe0c6;
  --ss-mint-soft: #b8f5e6;
  --ss-gold: #e4b76a;
  --ss-gold-soft: #f3d9a8;
  --ss-fog: #e8f4f1;
  --ss-ice: #f4fbf9;
  --ss-text: #102a32;
  --ss-muted: #4d6b74;
  --ss-line: rgba(20, 104, 120, 0.14);
  --ss-glow: rgba(111, 224, 198, 0.35);
  --ss-radius: 1.25rem;
  --ss-shadow: 0 22px 50px rgba(7, 28, 36, 0.18);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ss-text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(111, 224, 198, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(228, 183, 106, 0.16), transparent 50%),
    linear-gradient(180deg, var(--ss-ice) 0%, #dff3ee 45%, var(--ss-fog) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.page-title,
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ss-deep);
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-wrap: balance;
}

h1,
.page-title,
.hero-title {
  font-weight: 800;
  font-size: clamp(2.05rem, 5.2vw, 3.55rem);
}

h2,
.section-title {
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h5,
h6 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.topbar {
  background: linear-gradient(90deg, var(--ss-deep) 0%, var(--ss-navy) 55%, #0f5160 100%);
  color: var(--ss-mint-soft);
  font-size: 0.875rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(111, 224, 198, 0.18);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.topbar-inner i {
  color: var(--ss-gold);
  font-size: 0.95rem;
}

.topbar-inner span {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(244, 251, 249, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ss-line);
}

.navbar-ss {
  padding: 0.95rem 0;
}

.navbar-ss .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--ss-navy) 0%, var(--ss-teal) 100%);
  color: var(--ss-mint);
  box-shadow: 0 10px 24px rgba(11, 61, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.brand-mark i {
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ss-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--ss-navy);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible,
.nav-desktop a.active {
  background: rgba(111, 224, 198, 0.28);
  color: var(--ss-deep);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--ss-line);
  border-radius: 0.85rem;
  background: #fff;
  color: var(--ss-navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--ss-mint-soft);
  border-color: rgba(111, 224, 198, 0.55);
  outline: none;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--ss-navy);
  color: var(--ss-mint);
  border-color: var(--ss-navy);
}

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--ss-line);
  box-shadow: 0 18px 36px rgba(7, 28, 36, 0.12);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1rem;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ss-line);
  font-weight: 600;
  color: var(--ss-navy);
}

.mobile-nav-list li:last-child a {
  border-bottom: none;
}

.mobile-nav-list a i {
  color: var(--ss-teal);
  font-size: 0.85rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, var(--ss-glow), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--ss-teal);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker i {
  color: var(--ss-gold);
}

.hero-title {
  margin: 0 0 1.15rem;
  max-width: 18ch;
}

.hero-title span {
  background: linear-gradient(120deg, var(--ss-teal), #1aa58d 45%, var(--ss-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: 1.125rem;
  color: var(--ss-muted);
  max-width: 34rem;
  margin: 0 0 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn-ss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-ss:hover,
.btn-ss:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary-ss {
  background: linear-gradient(135deg, var(--ss-navy), var(--ss-teal));
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 61, 74, 0.28);
}

.btn-primary-ss:hover,
.btn-primary-ss:focus-visible {
  box-shadow: 0 18px 36px rgba(11, 61, 74, 0.36);
  color: #fff;
}

.btn-ghost-ss {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--ss-line);
  color: var(--ss-navy);
}

.btn-ghost-ss:hover,
.btn-ghost-ss:focus-visible {
  background: #fff;
  border-color: rgba(111, 224, 198, 0.55);
  color: var(--ss-deep);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ss-muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.hero-meta-item i {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 224, 198, 0.22);
  color: var(--ss-teal);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--ss-radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--ss-shadow);
  background: linear-gradient(160deg, var(--ss-navy), var(--ss-deep));
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.hero-orbit {
  position: absolute;
  inset: -8% -6%;
  border: 1px dashed rgba(111, 224, 198, 0.45);
  border-radius: 2rem;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(7, 28, 36, 0.78);
  color: var(--ss-mint-soft);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(7, 28, 36, 0.28);
}

.hero-badge i {
  color: var(--ss-gold);
}

.games-section {
  position: relative;
  padding: 1rem 0 4.75rem;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--ss-teal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker i {
  color: var(--ss-gold);
}

.section-title {
  margin: 0 0 0.85rem;
}

.section-copy {
  margin: 0;
  color: var(--ss-muted);
  font-size: 1.05rem;
}

.game-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--ss-radius) + 0.15rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ss-line);
  box-shadow: 0 16px 36px rgba(7, 28, 36, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(7, 28, 36, 0.14);
  border-color: rgba(111, 224, 198, 0.45);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ss-navy), var(--ss-deep));
}

.game-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-tile:hover .game-media img {
  transform: scale(1.05);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--ss-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-name {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.game-name a {
  color: var(--ss-deep);
  transition: color 0.2s ease;
}

.game-name a:hover,
.game-name a:focus-visible {
  color: var(--ss-teal);
  outline: none;
}

.game-play {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
}

.content-section {
  padding: 4.5rem 0;
  position: relative;
}

.content-section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(232, 244, 241, 0.9));
  border-block: 1px solid var(--ss-line);
}

.disclaimer-section {
  padding-bottom: 5rem;
}

.content-media {
  border-radius: calc(var(--ss-radius) + 0.2rem);
  overflow: hidden;
  box-shadow: var(--ss-shadow);
  background: linear-gradient(160deg, var(--ss-navy), var(--ss-deep));
}

.content-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-section .section-kicker {
  margin-bottom: 0.85rem;
}

.content-section .section-title {
  margin-bottom: 1rem;
  max-width: 18ch;
}

.content-lead {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ss-text);
  line-height: 1.7;
}

.content-text {
  margin: 0 0 1rem;
  color: var(--ss-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.content-section .btn-ss {
  margin-top: 0.75rem;
}

.disclaimer-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0 0.5rem;
}

.disclaimer-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ss-line);
  color: var(--ss-text);
  font-weight: 500;
  font-size: 0.98rem;
}

.disclaimer-point i {
  color: var(--ss-teal);
  margin-top: 0.15rem;
}

.site-footer {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(111, 224, 198, 0.12), transparent 55%),
    linear-gradient(165deg, #061820 0%, var(--ss-deep) 45%, #0a3340 100%);
  color: rgba(232, 244, 241, 0.88);
  padding: 4rem 0 1.75rem;
  border-top: 1px solid rgba(111, 224, 198, 0.16);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tag {
  color: rgba(184, 245, 230, 0.72);
}

.footer-about {
  margin: 1.15rem 0 0;
  color: rgba(232, 244, 241, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(232, 244, 241, 0.78);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ss-mint);
  outline: none;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(111, 224, 198, 0.18);
  min-height: 3.5rem;
  min-width: 3.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-badge:hover,
.footer-badge:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(111, 224, 198, 0.4);
  outline: none;
}

.footer-badge img {
  max-height: 2.75rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
}

.footer-disclaimer {
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 224, 198, 0.14);
}

.footer-disclaimer p {
  margin: 0 0 0.85rem;
  color: rgba(232, 244, 241, 0.8);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--ss-mint-soft);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(111, 224, 198, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(232, 244, 241, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 1199.98px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero {
    padding: 2.25rem 0 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-orbit {
    display: none;
  }

  .hero-title {
    max-width: none;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    justify-content: center;
    text-align: center;
  }

  .content-section {
    padding: 3.25rem 0;
  }

  .content-section .section-title {
    max-width: none;
  }

  .disclaimer-section {
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.78rem;
    padding: 0.55rem 0;
  }

  .topbar-inner {
    align-items: flex-start;
    gap: 0.55rem;
    text-align: left;
  }

  .navbar-ss {
    padding: 0.75rem 0;
  }

  .brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  .hero-meta {
    gap: 0.75rem;
  }

  .hero-meta-item {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-ss {
    width: 100%;
  }

  .hero-frame {
    border-radius: 1.1rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.6rem 0.75rem;
  }

  .games-section {
    padding: 0.5rem 0 3.25rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  .game-play {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-disclaimer {
    padding: 1.15rem 1rem;
  }
}

body.nav-lock,
body.age-lock,
html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 28, 36, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.age-overlay.is-hidden {
  display: none;
}

.age-panel {
  width: min(100%, 28rem);
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(244, 251, 249, 0.96);
  border: 1px solid rgba(111, 224, 198, 0.35);
  box-shadow: 0 24px 50px rgba(7, 28, 36, 0.28);
  text-align: center;
}

.age-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 0.9rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--ss-navy), var(--ss-teal));
  color: var(--ss-mint);
}

.age-icon-warn {
  background: linear-gradient(145deg, #5a2430, #8b3a4a);
  color: #ffd0d8;
}

.age-title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.age-text {
  margin: 0 0 1.25rem;
  color: var(--ss-muted);
  font-size: 0.98rem;
}

.age-actions {
  display: grid;
  gap: 0.7rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(7, 28, 36, 0.94);
  border: 1px solid rgba(111, 224, 198, 0.25);
  box-shadow: 0 18px 40px rgba(7, 28, 36, 0.35);
  color: rgba(232, 244, 241, 0.92);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}

.cookie-title i {
  color: var(--ss-gold);
  margin-right: 0.35rem;
}

.cookie-text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232, 244, 241, 0.78);
}

.cookie-text a {
  color: var(--ss-mint);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn-ghost-ss {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero .page-title {
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.page-hero .page-lead {
  margin: 0;
  max-width: 44rem;
  color: var(--ss-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-section {
  padding: 1.25rem 0 4.5rem;
}

.page-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ss-line);
  margin-bottom: 1rem;
}

.page-card h2,
.page-card h3 {
  margin-top: 0;
}

.page-card p,
.page-card li {
  color: var(--ss-muted);
  line-height: 1.75;
}

.page-card ul {
  padding-left: 1.15rem;
}

.faq-item + .faq-item {
  margin-top: 0.85rem;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ss-navy), var(--ss-teal));
  color: #fff;
  font-weight: 700;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: #fff;
  outline: none;
}

.game-stage-wrap {
  padding: 2.5rem 0 2rem;
}

.game-stage {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 224, 198, 0.22), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(228, 183, 106, 0.2), transparent 35%),
    linear-gradient(160deg, #071c24, #0b3d4a 55%, #0f5160);
  border: 1px solid rgba(111, 224, 198, 0.28);
  box-shadow: 0 28px 60px rgba(7, 28, 36, 0.28);
  color: #e8f4f1;
}

.game-stage.is-glow {
  box-shadow: 0 0 0 2px rgba(111, 224, 198, 0.45), 0 28px 70px rgba(111, 224, 198, 0.25);
}

.game-stage-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.game-stage-top h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(111, 224, 198, 0.22);
  font-size: 0.88rem;
}

.slot-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.slot-reel {
  min-height: 8.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(111, 224, 198, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(111, 224, 198, 0.12);
}

.slot-symbol {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: popIn 0.25s ease;
}

.slot-mint { background: linear-gradient(145deg, #1f8f7a, #6fe0c6); color: #05362e; }
.slot-gold { background: linear-gradient(145deg, #b8873d, #e4b76a); color: #3d2a0d; }
.slot-ice { background: linear-gradient(145deg, #6ca8b8, #d7f3ff); color: #14333b; }
.slot-teal { background: linear-gradient(145deg, #0f5160, #1aa58d); color: #d9fff4; }
.slot-violet { background: linear-gradient(145deg, #355d7a, #7cc6ff); color: #102535; }
.slot-amber { background: linear-gradient(145deg, #c27a2b, #f0c27a); color: #3a2208; }

.game-status {
  min-height: 3rem;
  margin: 0 0 1rem;
  color: rgba(232, 244, 241, 0.86);
}

.game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.game-controls .btn-ss:disabled {
  opacity: 0.55;
  transform: none;
  cursor: not-allowed;
}

.bj-table {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bj-row h3 {
  margin: 0 0 0.55rem;
  color: var(--ss-mint-soft);
  font-size: 1rem;
}

.bj-hand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 5.5rem;
}

.bj-card {
  width: 3.6rem;
  height: 5rem;
  border-radius: 0.65rem;
  background: #f7fffc;
  color: #102a32;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  animation: popIn 0.25s ease;
}

.bj-card.is-red {
  color: #a13a4a;
}

.bj-card.is-back {
  background: linear-gradient(145deg, #0b3d4a, #146878);
  color: var(--ss-mint);
  align-items: center;
  justify-content: center;
}

.roulette-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.roulette-wheel-wrap {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 1;
  margin: 0 auto;
}

.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #6fe0c6 0deg 90deg,
    #e4b76a 90deg 180deg,
    #b8dce8 180deg 270deg,
    #1aa58d 270deg 360deg
  );
  border: 6px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 40px rgba(111, 224, 198, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.25);
  position: relative;
}

.roulette-wheel::after {
  content: "";
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle, #123844, #071c24);
  border: 2px solid rgba(111, 224, 198, 0.35);
}

.roulette-pointer {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-top: 0.9rem solid var(--ss-gold);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  z-index: 2;
}

.roulette-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.roulette-choice {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 0.8rem;
  padding: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.roulette-choice.is-active {
  border-color: var(--ss-mint);
  box-shadow: 0 0 0 2px rgba(111, 224, 198, 0.25);
}

.roulette-result {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
}

.tone-mint { color: #6fe0c6; }
.tone-gold { color: #e4b76a; }
.tone-ice { color: #c9eaf5; }
.tone-teal { color: #1aa58d; }

.game-disclaimer {
  margin-top: 1.5rem;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .roulette-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn-ss {
    width: 100%;
  }

  .slot-symbol {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.55rem;
  }

  .page-hero {
    padding-top: 2.25rem;
  }
}
