@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap");

:root {
  --navy: #061525;
  --deep: #0a2238;
  --panel: #0f2c45;
  --ice: #45d6c0;
  --ice-soft: #7ee8d6;
  --frost: #e7f3f7;
  --mist: #90aeba;
  --line: rgba(126, 232, 214, 0.18);
  --glow: rgba(69, 214, 192, 0.35);
  --text: #f3fafc;
  --muted: #b6c9d4;
  --danger-soft: #ffb4a8;
  --radius: 1.25rem;
  --shadow: 0 24px 60px rgba(2, 10, 20, 0.45);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(69, 214, 192, 0.16), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(64, 140, 210, 0.18), transparent 40%),
    linear-gradient(180deg, #04101c 0%, var(--navy) 45%, #071a2b 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  background-image: linear-gradient(118deg, #f4fcff 0%, #b8f3e8 38%, #45d6c0 72%, #6eb8ff 100%);
  background-size: 140% 140%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

h1,
.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
}

h1 span,
h2 span,
h3 span,
.hero-title span {
  background-image: linear-gradient(118deg, #7ee8d6 0%, #45d6c0 55%, #8fd0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  background: rgba(6, 21, 37, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(69, 214, 192, 0.25), rgba(69, 214, 192, 0.05));
  border: 1px solid rgba(69, 214, 192, 0.4);
  box-shadow: 0 0 24px var(--glow);
  color: var(--ice);
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--mist);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.55rem 0.7rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 214, 192, 0.25);
}

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 1.25rem;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ice);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-link-custom {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted) !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom:focus,
.nav-link-custom.active {
  color: var(--frost) !important;
  background: rgba(69, 214, 192, 0.1);
}

.nav-link-custom.active {
  color: var(--ice) !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4, 16, 28, 0.9) 0%, rgba(4, 16, 28, 0.72) 48%, rgba(4, 16, 28, 0.45) 100%),
    radial-gradient(circle at 70% 40%, rgba(69, 214, 192, 0.16), transparent 45%);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 4.5rem 0 5rem;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ice-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-title {
  margin: 0 0 1.15rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 2rem;
  text-shadow: 0 6px 20px rgba(2, 10, 20, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-ice {
  --bs-btn-color: #04202c;
  --bs-btn-bg: var(--ice);
  --bs-btn-border-color: var(--ice);
  --bs-btn-hover-color: #031820;
  --bs-btn-hover-bg: var(--ice-soft);
  --bs-btn-hover-border-color: var(--ice-soft);
  --bs-btn-active-color: #031820;
  --bs-btn-active-bg: #6fdfcf;
  --bs-btn-active-border-color: #6fdfcf;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  box-shadow: 0 12px 30px rgba(69, 214, 192, 0.28);
}

.btn-ghost {
  --bs-btn-color: var(--frost);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(231, 243, 247, 0.28);
  --bs-btn-hover-color: var(--frost);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.06);
  --bs-btn-hover-border-color: rgba(231, 243, 247, 0.5);
  --bs-btn-active-color: var(--frost);
  --bs-btn-active-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-active-border-color: rgba(231, 243, 247, 0.55);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
}

.hero-orbit {
  position: absolute;
  right: 6%;
  top: 50%;
  z-index: 2;
  translate: 0 -50%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(126, 232, 214, 0.2);
  pointer-events: none;
  opacity: 0.75;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 24px var(--glow);
}

.hero-orbit::before {
  width: 12px;
  height: 12px;
  top: 8%;
  left: 48%;
}

.hero-orbit::after {
  width: 8px;
  height: 8px;
  bottom: 16%;
  right: 12%;
  background: #7eb8ff;
}

.games-section {
  padding: 5rem 0 5.5rem;
  position: relative;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(69, 214, 192, 0.08), transparent 36%),
    radial-gradient(circle at 82% 70%, rgba(110, 184, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.games-intro {
  max-width: 40rem;
  margin-bottom: 2.75rem;
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ice-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0.9rem 0 0;
  max-width: 36rem;
}

.game-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(15, 44, 69, 0.88), rgba(8, 26, 42, 0.96));
  box-shadow: var(--shadow);
}

.game-tile:hover {
  border-color: rgba(69, 214, 192, 0.4);
}

.game-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #071522;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.game-name {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  background: none;
  color: var(--frost);
  -webkit-text-fill-color: var(--frost);
}

.game-name a {
  display: inline-block;
  background-image: linear-gradient(118deg, #f4fcff 0%, #b8f3e8 38%, #45d6c0 72%, #6eb8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: opacity var(--transition);
}

.game-name a:hover,
.game-name a:focus {
  opacity: 0.85;
}

.game-meta {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.game-meta i {
  color: var(--ice);
}

.game-play {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.7rem 1.25rem;
}

.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section-alt {
  background: linear-gradient(180deg, rgba(10, 34, 56, 0.55), rgba(6, 21, 37, 0.2));
  border-block: 1px solid var(--line);
}

.content-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.content-copy p {
  margin-bottom: 1.15rem;
}

.content-copy-wide {
  max-width: 52rem;
}

.section-figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #071522;
  position: relative;
}

.section-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(69, 214, 192, 0.12), transparent 42%);
}

.section-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.section-figure-wide {
  margin-bottom: 2rem;
}

.section-figure-wide img {
  aspect-ratio: 16 / 9;
}

.section-figure-tall img {
  min-height: 28rem;
}

.feature-block {
  height: 100%;
  padding: 0.35rem 0.15rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--ice);
  background: rgba(69, 214, 192, 0.12);
  border: 1px solid rgba(69, 214, 192, 0.28);
  font-size: 1.05rem;
}

.feature-block h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.feature-block p {
  color: var(--muted);
  margin: 0;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 1.02rem;
  padding: 0.95rem 1rem;
  border-left: 2px solid rgba(69, 214, 192, 0.45);
  background: linear-gradient(90deg, rgba(69, 214, 192, 0.08), transparent 70%);
}

.checklist i {
  color: var(--ice);
  margin-top: 0.2rem;
}

.disclaimer-section {
  padding: 5rem 0;
}

.disclaimer-panel {
  border: 1px solid rgba(69, 214, 192, 0.28);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(69, 214, 192, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(12, 38, 58, 0.95), rgba(6, 22, 36, 0.98));
  box-shadow: var(--shadow);
}

.disclaimer-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.disclaimer-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.disclaimer-point i {
  color: var(--ice);
  margin-top: 0.2rem;
}

.disclaimer-point strong {
  display: block;
  color: var(--frost);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.disclaimer-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  max-width: 48rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(10, 34, 56, 0.72);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--frost);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question i {
  color: var(--ice);
  transition: transform var(--transition);
}

.faq-question:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.6rem;
  color: var(--mist);
  font-size: 0.94rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 214, 192, 0.1), transparent 35%),
    rgba(4, 16, 28, 0.92);
}

.footer-main {
  padding-bottom: 2rem;
}

.footer-brand {
  margin-bottom: 1.1rem;
}

.footer-about {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.95rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none !important;
  color: var(--frost) !important;
  -webkit-text-fill-color: var(--frost) !important;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--mist);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--ice-soft);
}

.footer-disclaimer {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
  display: grid;
  gap: 0.75rem;
}

.footer-disclaimer p {
  margin: 0;
  color: var(--muted);
  max-width: 70rem;
}

.footer-disclaimer strong {
  color: var(--frost);
  font-family: var(--font-body);
}

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem;
  color: var(--mist);
  font-size: 0.88rem;
}

.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(69, 214, 192, 0.18), transparent 40%),
    rgba(2, 10, 18, 0.88);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-card {
  width: min(100%, 34rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(69, 214, 192, 0.35);
  background: linear-gradient(165deg, rgba(14, 42, 64, 0.98), rgba(6, 20, 34, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(69, 214, 192, 0.12);
  padding: 1.8rem 1.6rem 1.6rem;
  text-align: center;
}

.age-gate-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: var(--ice);
  background: rgba(69, 214, 192, 0.12);
  border: 1px solid rgba(69, 214, 192, 0.35);
  font-size: 1.3rem;
  box-shadow: 0 0 28px rgba(69, 214, 192, 0.25);
}

.age-gate-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

.age-gate-text {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  text-align: left;
}

.age-gate-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  color: var(--frost);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
}

.age-gate-check input {
  margin-top: 0.25rem;
  accent-color: var(--ice);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.age-gate-btn {
  width: 100%;
}

.age-gate-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(8, 26, 42, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.cookie-consent-copy {
  flex: 1 1 18rem;
}

.cookie-consent-copy strong {
  display: block;
  color: var(--frost);
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-consent-copy a {
  color: var(--ice-soft);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-hero {
  padding: 3.6rem 0 2.4rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(69, 214, 192, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 34, 56, 0.55), transparent);
}

.page-hero h1 {
  margin: 0 0 0.9rem;
}

.page-hero-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-main {
  padding: 3.5rem 0 4.5rem;
}

.policy-content,
.article-content {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-content h2,
.article-content h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem) !important;
}

.policy-content p,
.article-content p,
.policy-content ul,
.article-content ul {
  margin-bottom: 1.05rem;
}

.policy-content ul,
.article-content ul {
  padding-left: 1.2rem;
}

.policy-content li,
.article-content li {
  margin-bottom: 0.45rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(69, 214, 192, 0.35);
  background: rgba(69, 214, 192, 0.1);
  color: var(--ice-soft);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--frost);
  border-color: rgba(69, 214, 192, 0.6);
}

.compliance-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--ice);
  background: rgba(69, 214, 192, 0.08);
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 34, 56, 0.96);
  }

  .nav-link-custom {
    border-radius: 0.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.4rem 0 4rem;
  }

  .hero-orbit {
    display: none;
  }

  .disclaimer-points {
    grid-template-columns: 1fr;
  }

  .content-section,
  .disclaimer-section {
    padding: 3.75rem 0;
  }

  .section-figure-tall img {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .brand-text strong {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .games-section {
    padding: 3.5rem 0 4rem;
  }

  .game-play {
    width: 100%;
  }

  .footer-badges img {
    max-height: 40px;
  }
}
