@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  --ink: #10243a;
  --ink-soft: #3a5169;
  --mist: #e8f4f2;
  --paper: #f6fbfa;
  --surface: #ffffff;
  --teal: #0f766e;
  --teal-bright: #14b8a6;
  --aqua: #5eead4;
  --coral: #ef6b5b;
  --coral-deep: #d95345;
  --line: rgba(16, 36, 58, 0.08);
  --shadow: 0 24px 60px rgba(16, 36, 58, 0.12);
  --radius: 1.25rem;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Figtree", sans-serif;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(94, 234, 212, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(239, 107, 91, 0.18), transparent 50%),
    linear-gradient(180deg, #f0faf8 0%, var(--paper) 40%, #eef6f8 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar {
  background: linear-gradient(90deg, #0b3d3a 0%, #0f766e 45%, #134e4a 100%);
  color: #e7fffb;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  flex-wrap: wrap;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-badge i {
  font-size: 0.72rem;
}

.topbar-text {
  opacity: 0.95;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar-surtivee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal) 0%, #0d9488 55%, var(--teal-bright) 100%);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 70%;
  height: 70%;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-domain {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible,
.nav-desktop a.active {
  color: var(--ink);
  background: rgba(15, 118, 110, 0.08);
}

.nav-desktop a.active {
  color: var(--teal);
}

.nav-cta {
  margin-left: 0.35rem !important;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(239, 107, 91, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.05);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%) !important;
  color: #fff !important;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--mist);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--mist);
  color: var(--teal);
}

.nav-toggle i {
  font-size: 1.15rem;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 1.1rem;
}

.nav-mobile.is-open {
  display: block;
  animation: navSlide 0.32s ease;
}

@keyframes navSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.35rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child {
  border-bottom: 0;
  margin-top: 0.55rem;
  justify-content: center;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  border-radius: 0.9rem;
  padding: 0.95rem;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--teal);
}

.nav-mobile a:last-child:hover {
  color: #fff;
  filter: brightness(1.04);
}

.hero {
  position: relative;
  padding: 3.25rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
  top: -8rem;
  left: -6rem;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 107, 91, 0.12), transparent 70%);
  bottom: -4rem;
  right: -4rem;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 1.15rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--teal) 0%, #0d9488 40%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn-primary-s,
.btn-ghost-s {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary-s {
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.28);
}

.btn-primary-s:hover,
.btn-primary-s:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.34);
  color: #fff;
}

.btn-ghost-s {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost-s:hover,
.btn-ghost-s:focus-visible {
  background: #fff;
  transform: translateY(-2px);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 14rem;
}

.hero-meta-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(16, 36, 58, 0.06);
}

.hero-meta-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hero-meta-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  background: linear-gradient(160deg, #d8f3ef 0%, #f8ebe8 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: scale(1.01) translateY(0);
  }
  50% {
    transform: scale(1.03) translateY(-6px);
  }
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
  animation: orbPulse 5.5s ease-in-out infinite;
}

.hero-orb-one {
  width: 7rem;
  height: 7rem;
  background: rgba(20, 184, 166, 0.35);
  top: -1.5rem;
  right: -1rem;
}

.hero-orb-two {
  width: 5rem;
  height: 5rem;
  background: rgba(239, 107, 91, 0.28);
  bottom: 1rem;
  left: -1.25rem;
  animation-delay: 1.2s;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.hero-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 36, 58, 0.12);
  animation: chipIn 0.9s ease both 0.35s;
}

.hero-chip i {
  color: var(--teal);
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.games {
  padding: 1rem 0 4.5rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.section-lead {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  max-width: 32rem;
  font-size: 1.02rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--teal);
  padding: 0.55rem 0.2rem;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--coral-deep);
}

.games-grid {
  display: grid;
  gap: 1.25rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(16, 36, 58, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(16, 36, 58, 0.12);
}

.game-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(160deg, #0f2f3a, #134e4a);
}

.game-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-card:hover .game-media img {
  transform: scale(1.05);
}

.game-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.game-tag i {
  color: var(--teal);
  font-size: 0.7rem;
}

.game-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.game-title a {
  color: var(--ink);
}

.game-title a:hover,
.game-title a:focus-visible {
  color: var(--teal);
}

.game-text {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.game-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.game-play:hover,
.game-play:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.3);
}

.features {
  padding: 0.5rem 0 3.5rem;
}

.feature-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(16, 36, 58, 0.06);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(20, 184, 166, 0.08));
  color: var(--teal);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.feature-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.split-section {
  padding: 2.5rem 0 4.5rem;
}

.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-frame {
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #d8f3ef 0%, #f8ebe8 100%);
}

.split-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy .section-title {
  margin-bottom: 1rem;
}

.split-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 1rem;
}

.split-text:last-of-type {
  margin-bottom: 1.5rem;
}

.split-points {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.split-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.split-point i {
  color: var(--teal);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.notice-section {
  padding: 0 0 4.5rem;
}

.notice-panel {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  background: linear-gradient(145deg, #0c2a36 0%, #134e4a 55%, #0f766e 100%);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 1.5rem;
  color: #e8f4f2;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.notice-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.notice-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.notice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.75rem;
}

.notice-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

.notice-text {
  margin: 0 0 1rem;
  color: rgba(232, 244, 242, 0.82);
  font-size: 1.02rem;
}

.notice-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}

.notice-actions .btn-ghost-s {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.notice-actions .btn-ghost-s:hover,
.notice-actions .btn-ghost-s:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-footer {
  background: linear-gradient(180deg, #0c2a36 0%, #0a1f2a 100%);
  color: rgba(232, 244, 242, 0.88);
  padding: 3.75rem 0 1.75rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-domain {
  color: var(--aqua);
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-text {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(232, 244, 242, 0.72);
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(232, 244, 242, 0.72);
  font-weight: 500;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--aqua);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232, 244, 242, 0.62);
}

.footer-disclaimer strong {
  color: rgba(232, 244, 242, 0.88);
  font-weight: 700;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-badge-link:hover,
.footer-badge-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-badge-link img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(232, 244, 242, 0.58);
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
  }

  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
  }

  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .notice-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 1.75rem;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar-text {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-s,
  .btn-ghost-s {
    justify-content: center;
  }

  .hero-chip {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 31, 42, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.age-gate-card {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.35rem;
  box-shadow: 0 24px 60px rgba(10, 31, 42, 0.28);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.age-gate-card-restrict {
  width: min(100%, 460px);
}

.age-gate-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), var(--teal-bright));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.3);
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.age-gate-card p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.age-gate-actions {
  display: grid;
  gap: 0.7rem;
}

.age-gate-actions .btn-primary-s,
.age-gate-actions .btn-ghost-s,
.age-gate-card-restrict .btn-ghost-s {
  justify-content: center;
  width: 100%;
}

.age-gate .btn-ghost-s {
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.18);
  color: var(--ink);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-consent-inner {
  background: rgba(12, 42, 54, 0.96);
  color: rgba(232, 244, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 18px 40px rgba(10, 31, 42, 0.35);
  display: grid;
  gap: 1rem;
}

.cookie-consent-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-consent-inner a {
  color: var(--aqua);
  font-weight: 700;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-consent-actions .btn-ghost-s {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cookie-consent-actions .btn-ghost-s:hover,
.cookie-consent-actions .btn-ghost-s:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero .section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.page-content {
  padding: 0 0 4.5rem;
}

.content-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: 1.75rem 1.4rem;
  box-shadow: 0 16px 36px rgba(16, 36, 58, 0.06);
}

.content-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.content-panel h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0.65rem;
}

.content-panel p,
.content-panel li {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.content-panel p {
  margin: 0 0 1rem;
}

.content-panel ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
}

.content-panel a {
  color: var(--teal);
  font-weight: 700;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.28);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #fff !important;
  filter: brightness(1.05);
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-item h3 {
  margin-top: 0;
}

.game-stage-wrap {
  padding: 0 0 3rem;
}

.game-stage {
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 20% 10%, rgba(94, 234, 212, 0.22), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(239, 107, 91, 0.18), transparent 40%),
    linear-gradient(160deg, #071821 0%, #0c2a36 45%, #0f3d3a 100%);
  color: #e8f4f2;
  padding: 1.25rem;
}

.game-stage-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.game-stage-top h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.game-stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
}

.game-canvas {
  position: relative;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 360px;
  padding: 1rem;
  overflow: hidden;
}

.game-disclaimer {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(232, 244, 242, 0.78);
}

.game-disclaimer strong {
  color: #fff;
}

@media (min-width: 768px) {
  .content-panel {
    padding: 2.25rem;
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .game-stage {
    padding: 1.75rem;
  }
}
