:root {
  --navy: #10233f;
  --ink: #1a2b45;
  --slate: #51627a;
  --frost: #f4f7fc;
  --snow: #ffffff;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(16, 35, 63, 0.1);
  --azure: #2f6bff;
  --azure-deep: #1e4fd6;
  --coral: #ff5d4a;
  --coral-soft: #ff8a7a;
  --sky: #dce8ff;
  --mist: #e8eef8;
  --shadow: 0 20px 50px rgba(16, 35, 63, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Onest", sans-serif;
  --ease: 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(900px 520px at 8% -8%, rgba(47, 107, 255, 0.16), transparent 60%),
    radial-gradient(760px 480px at 100% 0%, rgba(255, 93, 74, 0.12), transparent 55%),
    linear-gradient(180deg, #eef3fb 0%, var(--frost) 42%, #e9f0fa 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #132a4f 0%, #1a3560 50%, #132a4f 100%);
  position: relative;
  z-index: 20;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  min-height: 46px;
}

.topbar-text {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 500;
}

.topbar-text i {
  color: #9fbdff;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.topbar-link {
  flex-shrink: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
}

.topbar-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(244, 247, 252, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--azure), #5b8cff 55%, var(--coral-soft));
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.28);
  font-size: 1.05rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure);
  font-weight: 700;
  margin-top: 0.18rem;
}

.custom-toggler {
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: var(--snow);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 107, 255, 0.2);
}

.toggler-lines {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggler-lines span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.custom-toggler[aria-expanded="true"] .toggler-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-lines span:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav .nav-link {
  color: var(--slate);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--navy);
  background: rgba(47, 107, 255, 0.1);
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--azure);
  --bs-btn-border-color: var(--azure);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--azure-deep);
  --bs-btn-hover-border-color: var(--azure-deep);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--azure-deep);
  --bs-btn-active-border-color: var(--azure-deep);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.28);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.72rem 1.3rem;
}

.btn-ghost:hover {
  color: var(--navy);
  border-color: rgba(47, 107, 255, 0.35);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  padding: 4.6rem 0 3.2rem;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 35, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 63, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 40% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-orb-a {
  width: 340px;
  height: 340px;
  background: rgba(47, 107, 255, 0.22);
  top: -40px;
  left: -50px;
  animation: drift 10s ease-in-out infinite;
}

.hero-orb-b {
  width: 300px;
  height: 300px;
  background: rgba(255, 93, 74, 0.16);
  right: -30px;
  bottom: 20px;
  animation: drift 12s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: riseIn 0.85s var(--ease) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--azure-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(47, 107, 255, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

.hero-title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
}

.hero-brand {
  display: block;
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
  background: linear-gradient(120deg, var(--navy) 15%, var(--azure) 55%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  display: block;
  font-size: clamp(1.4rem, 3.1vw, 2.1rem);
  color: var(--navy);
  max-width: 15ch;
}

.hero-lead {
  max-width: 34rem;
  color: var(--slate);
  font-size: 1.08rem;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

.hero-actions .btn i {
  margin-right: 0.4rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-points i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--azure);
  border: 1px solid rgba(47, 107, 255, 0.16);
  box-shadow: 0 8px 18px rgba(16, 35, 63, 0.06);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: riseIn 1s var(--ease) 0.1s both;
}

.hero-frame {
  position: relative;
  border-radius: 34px;
  padding: 0.75rem;
  background: linear-gradient(160deg, rgba(47, 107, 255, 0.35), rgba(255, 93, 74, 0.2) 48%, rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  animation: softPulse 6.5s ease-in-out infinite;
}

.hero-chip {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(16, 35, 63, 0.14);
  border: 1px solid rgba(16, 35, 63, 0.06);
  font-size: 1.15rem;
  animation: floatChip 5.5s ease-in-out infinite;
}

.hero-chip-a {
  top: 8%;
  left: -2%;
  color: var(--azure);
}

.hero-chip-b {
  bottom: 12%;
  right: -2%;
  color: var(--coral);
  animation-delay: 0.8s;
}

.intro-strip {
  padding: 0.5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 40rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--azure-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-lead {
  margin: 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.games-section {
  padding: 1rem 0 4rem;
  position: relative;
  z-index: 2;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 35, 63, 0.14);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--mist);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.game-card:hover .game-media img {
  transform: scale(1.04);
}

.game-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  color: var(--azure);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.game-body h3 a {
  color: var(--navy);
}

.game-body h3 a:hover {
  color: var(--azure);
}

.game-body p {
  margin: 0 0 1.2rem;
  color: var(--slate);
  font-size: 0.96rem;
  flex: 1;
}

.game-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.feature-block {
  height: 100%;
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px rgba(16, 35, 63, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: riseIn 0.9s var(--ease) both;
}

.feature-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(16, 35, 63, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(47, 107, 255, 0.14), rgba(47, 107, 255, 0.05));
  color: var(--azure);
  border: 1px solid rgba(47, 107, 255, 0.14);
  font-size: 1.1rem;
}

.feature-icon-alt {
  background: linear-gradient(145deg, rgba(255, 93, 74, 0.14), rgba(255, 93, 74, 0.05));
  color: var(--coral);
  border-color: rgba(255, 93, 74, 0.16);
}

.feature-block h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.feature-block p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.about-section,
.experience-section,
.support-section {
  padding: 2rem 0 4.5rem;
  position: relative;
  z-index: 2;
}

.about-panel h2,
.support-section h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.about-panel p,
.support-section > .container > .row > .col-lg-7 > p {
  color: var(--slate);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.about-panel .btn,
.support-actions {
  margin-top: 0.75rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 14px 30px rgba(16, 35, 63, 0.06);
}

.about-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(47, 107, 255, 0.12);
  color: var(--azure);
}

.about-item-icon-alt {
  background: rgba(255, 93, 74, 0.12);
  color: var(--coral);
}

.about-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
}

.about-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.step-card {
  height: 100%;
  padding: 1.7rem 1.45rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 16px 36px rgba(16, 35, 63, 0.07);
}

.step-index {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--azure);
}

.step-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.disclaimer-section {
  padding: 1rem 0 4.5rem;
  position: relative;
  z-index: 2;
}

.disclaimer-shell {
  border-radius: 30px;
  padding: 2.4rem 1.8rem;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(47, 107, 255, 0.28), transparent 60%),
    linear-gradient(160deg, #132a4f 0%, #1a3560 55%, #10233f 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 50px rgba(16, 35, 63, 0.22);
}

.section-kicker-light {
  color: #9fbdff;
}

.disclaimer-shell h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.disclaimer-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.disclaimer-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: rgba(159, 189, 255, 0.14);
  color: #9fbdff;
}

.disclaimer-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
}

.disclaimer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-ghost-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.support-panel {
  padding: 1.6rem 1.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 16px 36px rgba(16, 35, 63, 0.08);
}

.support-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.support-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.support-panel a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: var(--frost);
  color: var(--ink);
  font-weight: 600;
  border: 1px solid transparent;
}

.support-panel a i {
  color: var(--azure);
}

.support-panel a:hover {
  border-color: rgba(47, 107, 255, 0.2);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 35, 63, 0.96), #0c1a31);
  color: rgba(255, 255, 255, 0.86);
  padding: 3.5rem 0 1.75rem;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-tag {
  color: #9fbdff;
}

.site-footer .brand-mark {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 30rem;
}

.footer-partner {
  margin-top: 1.25rem;
}

.footer-partner a {
  display: inline-flex;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-partner img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.footer-col a:hover {
  color: #fff;
}

.footer-disclaimers {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-disclaimers p {
  margin: 0;
}

.footer-disclaimers strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-note {
  color: #9fbdff;
  font-weight: 600;
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
}

.age-gate,
.age-restrict {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(16, 35, 63, 0.28);
  backdrop-filter: blur(2.5px);
}

.age-gate[hidden],
.age-restrict[hidden],
.cookie-consent[hidden] {
  display: none !important;
}

.age-gate-card,
.age-restrict-card {
  width: min(100%, 420px);
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: 0 24px 60px rgba(16, 35, 63, 0.22);
  text-align: center;
}

.age-gate-badge {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--azure), #5b8cff);
  color: #fff;
  font-size: 1.2rem;
}

.age-gate-card h2,
.age-restrict-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.age-gate-card p,
.age-restrict-card p {
  margin: 0 0 1.25rem;
  color: var(--slate);
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.age-restrict-card > i {
  font-size: 1.8rem;
  color: var(--coral);
  margin-bottom: 0.8rem;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-consent-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.16);
}

.cookie-consent-copy {
  flex: 1 1 280px;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-family: var(--font-display);
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.cookie-consent-copy a {
  color: var(--azure);
  font-weight: 700;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
  position: relative;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  max-width: 46rem;
  color: var(--slate);
  font-size: 1.08rem;
}

.page-content {
  padding: 0 0 4.5rem;
}

.content-panel {
  padding: 1.8rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 16px 36px rgba(16, 35, 63, 0.07);
  margin-bottom: 1.25rem;
}

.content-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.content-panel h3 {
  margin: 1.2rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.content-panel p,
.content-panel li {
  color: var(--slate);
  font-size: 1.02rem;
}

.content-panel p {
  margin: 0 0 0.9rem;
}

.content-panel ul {
  margin: 0 0 0.9rem;
  padding-left: 1.15rem;
}

.content-panel a {
  color: var(--azure);
  font-weight: 700;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(47, 107, 255, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.faq-item + .faq-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.game-play-shell {
  padding: 0 0 3rem;
}

.game-disclaimer {
  margin-top: 1.5rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.05);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .navbar-nav {
    gap: 0.2rem;
  }

  .navbar-nav .nav-link {
    border-radius: 12px;
  }

  .btn-brand {
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-line {
    max-width: none;
  }

  .hero-chip {
    display: none;
  }

  .disclaimer-shell {
    padding: 2rem 1.35rem;
  }

  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .topbar-text {
    font-size: 0.8rem;
  }

  .hero {
    padding: 2.4rem 0 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .support-actions,
  .disclaimer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-actions .btn,
  .disclaimer-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
