:root {
    --bg: #060814;
    --bg-2: #0b0f22;
    --surface: #10152e;
    --surface-2: #161c3a;
    --teal: #2dd4bf;
    --violet: #8b5cf6;
    --amber: #fbbf24;
    --pink: #fb7185;
    --text: #eef1ff;
    --text-muted: #9aa3c7;
    --border: rgba(255, 255, 255, 0.09);
    --radius: 20px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    --grad: linear-gradient(115deg, var(--teal), var(--violet) 55%, var(--pink));
    --grad-warm: linear-gradient(120deg, var(--amber), var(--pink));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(900px 600px at 85% -5%, rgba(139, 92, 246, 0.22), transparent 60%),
        radial-gradient(800px 500px at 0% 10%, rgba(45, 212, 191, 0.12), transparent 55%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .brand-name {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1240px;
}

.navbar-wrap {
    padding: 20px 0 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 12px 12px 18px;
    background: rgba(16, 21, 46, 0.72);
    border: 1px solid var(--border);
    border-radius: 100px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--grad);
    color: #05070f;
    font-size: 1.2rem;
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.45);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.28rem;
    font-weight: 700;
    color: #fff;
}

.brand-accent {
    color: var(--teal);
}

.brand-year {
    color: var(--amber);
}

.brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    padding: 9px 15px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.94rem;
    color: var(--text-muted);
    transition: color 0.25s, background 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: #05070f;
    background: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.35);
}

.age-chip i {
    color: var(--teal);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #05070f;
    background: var(--grad-warm);
    border: none;
    box-shadow: 0 10px 26px rgba(251, 191, 36, 0.28);
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
    white-space: nowrap;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 34px rgba(251, 113, 133, 0.42);
    color: #05070f;
}

.btn-lg-glow {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 100px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.btn-ghost:hover {
    border-color: var(--teal);
    background: rgba(45, 212, 191, 0.08);
    transform: translateY(-2px);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -360px;
    width: 330px;
    max-width: 86vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--surface-2), var(--bg));
    border-left: 1px solid var(--border);
    z-index: 1050;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.mobile-links {
    list-style: none;
    margin: 8px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.mobile-link i {
    width: 22px;
    color: var(--teal);
    text-align: center;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(4px);
}

.mobile-cta {
    justify-content: center;
    width: 100%;
}

.mobile-note {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.mobile-note i {
    color: var(--teal);
    margin-right: 5px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 16, 0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1040;
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.9;
    z-index: -4;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 700px at 78% 30%, transparent 0%, rgba(6, 8, 20, 0.55) 60%, var(--bg) 100%),
        linear-gradient(180deg, rgba(6, 8, 20, 0.35), var(--bg));
    z-index: -3;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 70%);
    z-index: -2;
}

.hero-orbs .orb {
    position: absolute;
    display: grid;
    place-items: center;
    color: #fff;
    opacity: 0.55;
    filter: drop-shadow(0 0 14px currentColor);
    z-index: -1;
    animation: float 7s ease-in-out infinite;
}

.orb-1 {
    top: 20%;
    left: 52%;
    font-size: 1.6rem;
    color: var(--pink);
}

.orb-2 {
    top: 12%;
    left: 82%;
    font-size: 1.3rem;
    color: var(--amber);
    animation-delay: 1.5s;
}

.orb-3 {
    top: 46%;
    left: 90%;
    font-size: 1.5rem;
    color: var(--teal);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--amber);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 22px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 34px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
}

.games {
    position: relative;
    padding: 100px 0;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--teal);
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.9), rgba(16, 21, 46, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: var(--shadow);
}

.game-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.game-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-media img {
    transform: scale(1.06);
}

.game-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 13, 30, 0.85));
}

.game-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #05070f;
    background: var(--grad-warm);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.game-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.game-name {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.game-name a {
    color: #fff;
    transition: color 0.25s;
}

.game-name a:hover {
    color: var(--teal);
}

.game-desc {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex: 1;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    align-self: flex-start;
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.94rem;
    color: #05070f;
    background: var(--teal);
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.btn-play:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 12px 26px rgba(45, 212, 191, 0.4);
    color: #05070f;
}

.section-title.text-start {
    text-align: left;
}

.about {
    position: relative;
    padding: 100px 0;
}

.about-copy .section-eyebrow {
    margin-bottom: 18px;
}

.about-copy .section-title {
    margin-bottom: 20px;
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-btn {
    margin-top: 10px;
}

.values-card {
    position: relative;
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.9), rgba(16, 21, 46, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    overflow: hidden;
}

.values-glow {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    pointer-events: none;
}

.values-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.values-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.values-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.15rem;
    color: var(--teal);
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.28);
}

.values-icon.icon-amber {
    color: var(--amber);
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.28);
}

.values-icon.icon-violet {
    color: var(--violet);
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.3);
}

.values-icon.icon-pink {
    color: var(--pink);
    background: rgba(251, 113, 133, 0.12);
    border-color: rgba(251, 113, 133, 0.28);
}

.values-list h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.values-list p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.why {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(700px 400px at 15% 0%, rgba(45, 212, 191, 0.08), transparent 60%),
        transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-card {
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.85), rgba(16, 21, 46, 0.85));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 1.4rem;
    color: var(--teal);
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.28);
    margin-bottom: 20px;
}

.why-icon.icon-amber {
    color: var(--amber);
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.28);
}

.why-icon.icon-violet {
    color: var(--violet);
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.3);
}

.why-icon.icon-pink {
    color: var(--pink);
    background: rgba(251, 113, 133, 0.12);
    border-color: rgba(251, 113, 133, 0.28);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin: 0;
}

.disclaimer-band {
    padding: 40px 0 100px;
}

.disclaimer-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(150deg, rgba(139, 92, 246, 0.16), rgba(45, 212, 191, 0.08));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 46px;
    position: relative;
    overflow: hidden;
}

.disclaimer-head p {
    color: var(--text-muted);
    margin: 16px 0 22px;
    font-size: 1rem;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    transition: border-color 0.25s, transform 0.25s, color 0.25s;
}

.resource-link i {
    font-size: 0.78rem;
    color: var(--teal);
}

.resource-link:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    color: #fff;
}

.disclaimer-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(6, 8, 20, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    position: relative;
    padding-left: 74px;
}

.pillar-badge {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #05070f;
    background: var(--grad-warm);
}

.pillar h4 {
    font-size: 1rem;
    margin: 0;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.site-footer {
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .brand {
    margin-bottom: 18px;
}

.footer-about {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin-bottom: 20px;
    max-width: 420px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--teal);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.25s;
}

.footer-contact a:hover {
    color: var(--teal);
}

.footer-title {
    font-size: 1.02rem;
    margin-bottom: 18px;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color 0.25s, transform 0.25s;
}

.footer-links a i {
    font-size: 0.72rem;
    color: var(--teal);
}

.footer-links a:hover {
    color: var(--teal);
    transform: translateX(3px);
}

.footer-age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.age-badge {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 26px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #05070f;
    background: var(--grad-warm);
}

.footer-disclaimer {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.footer-disclaimer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.footer-disclaimer i {
    color: var(--teal);
    margin-right: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.footer-social a:hover {
    color: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.no-scroll {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 5, 14, 0.9);
    backdrop-filter: blur(12px);
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(165deg, var(--surface-2), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 48px 36px 34px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: gate-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gate-in {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: none; }
}

.age-gate-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 60px;
    height: 44px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #05070f;
    background: var(--grad-warm);
    box-shadow: 0 10px 26px rgba(251, 191, 36, 0.4);
}

.age-gate-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 6px auto 16px;
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--teal);
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.age-gate-box h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.age-gate-box > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.age-gate-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    text-align: left;
    background: rgba(6, 8, 20, 0.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text);
}

.age-gate-check input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
    flex-shrink: 0;
    cursor: pointer;
}

.age-gate-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
}

.age-gate-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.age-gate-note {
    margin: 16px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cookie-bar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2500;
    background: rgba(16, 21, 46, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    transform: translateY(160%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}

.cookie-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.cookie-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-inner i {
    color: var(--amber);
    margin-right: 6px;
}

.cookie-inner a {
    color: var(--teal);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-ghost {
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s;
}

.cookie-ghost:hover {
    border-color: var(--pink);
    color: #fff;
}

.cookie-accept {
    cursor: pointer;
}

.page-hero {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 80% 0%, rgba(139, 92, 246, 0.22), transparent 60%),
        radial-gradient(500px 300px at 0% 100%, rgba(45, 212, 191, 0.12), transparent 60%);
    z-index: -1;
}

.page-hero-inner {
    max-width: 760px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    transition: color 0.25s;
}

.breadcrumb-nav a:hover {
    color: var(--teal);
}

.breadcrumb-nav i {
    font-size: 0.6rem;
    opacity: 0.6;
}

.breadcrumb-nav span {
    color: var(--text);
}

.page-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.section-pad {
    padding: 80px 0;
}

.prose {
    max-width: 860px;
    margin: 0 auto;
}

.prose h2 {
    font-size: 1.5rem;
    margin: 34px 0 12px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.15rem;
    margin: 22px 0 10px;
    color: #fff;
}

.prose p,
.prose li {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 14px;
}

.prose ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.prose li {
    margin-bottom: 8px;
}

.prose strong {
    color: var(--text);
}

.legal-card {
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.7), rgba(16, 21, 46, 0.7));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.8), rgba(16, 21, 46, 0.8));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-q i {
    color: var(--teal);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a p {
    padding: 0 24px 22px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    background: linear-gradient(160deg, rgba(22, 28, 58, 0.8), rgba(16, 21, 46, 0.8));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 26px;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--teal);
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.28);
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.contact-card a {
    color: var(--teal);
    font-weight: 600;
    word-break: break-word;
}

.game-stage {
    padding: 60px 0 40px;
}

.game-stage-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--amber);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    margin-bottom: 16px;
}

.game-panel {
    max-width: 900px;
    margin: 0 auto;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(139, 92, 246, 0.2), transparent 65%),
        linear-gradient(160deg, rgba(18, 23, 48, 0.95), rgba(10, 13, 30, 0.95));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.game-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad);
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.reel {
    width: 110px;
    height: 130px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a0d1e, #141a38);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    font-size: 3rem;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
}

.reel.spinning .reel-symbol {
    animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
    0% { transform: translateY(-16px); opacity: 0.4; }
    50% { opacity: 1; }
    100% { transform: translateY(16px); opacity: 0.4; }
}

.reel.win {
    border-color: var(--amber);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6), 0 0 26px rgba(251, 191, 36, 0.6);
}

.slot-msg,
.game-result {
    text-align: center;
    min-height: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--teal);
}

.game-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.98rem;
    color: #05070f;
    background: var(--grad-warm);
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s, opacity 0.25s;
}

.game-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(251, 113, 133, 0.4);
}

.game-btn.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.game-btn.secondary:hover {
    border-color: var(--teal);
    box-shadow: none;
    color: #fff;
}

.game-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bj-area {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 26px;
}

.bj-side h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.bj-score {
    color: var(--teal);
    font-weight: 700;
}

.bj-hand {
    display: flex;
    gap: 12px;
    min-height: 120px;
    flex-wrap: wrap;
}

.pcard {
    width: 84px;
    height: 116px;
    border-radius: 12px;
    background: linear-gradient(160deg, #fdfdff, #e7e9f5);
    color: #10152e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 9px 11px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: deal 0.35s ease;
}

@keyframes deal {
    from { opacity: 0; transform: translateY(-14px) rotate(-6deg); }
    to { opacity: 1; transform: none; }
}

.pcard.red {
    color: #d61f4a;
}

.pcard .rank {
    font-size: 1.25rem;
    line-height: 1;
}

.pcard .suit {
    font-size: 1.3rem;
    text-align: right;
}

.pcard.back {
    background: linear-gradient(150deg, var(--violet), var(--teal));
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.roulette {
    position: relative;
    width: 330px;
    height: 330px;
    max-width: 84vw;
    margin: 0 auto 30px;
}

.rl-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    font-size: 2.1rem;
    color: var(--amber);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
}

.rl-disc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(10, 13, 30, 0.9) 0 34%, transparent 35%),
        repeating-conic-gradient(from 0deg, #1b2350 0deg 9.73deg, #10173a 9.73deg 19.46deg);
    border: 10px solid #caa03a;
    box-shadow:
        0 0 46px rgba(139, 92, 246, 0.5),
        inset 0 0 34px rgba(0, 0, 0, 0.75),
        inset 0 0 0 4px rgba(202, 160, 58, 0.4);
    transition: transform 5.2s cubic-bezier(0.12, 0.72, 0.08, 1);
    will-change: transform;
}

.rl-disc.glow {
    box-shadow:
        0 0 70px rgba(45, 212, 191, 0.75),
        inset 0 0 34px rgba(0, 0, 0, 0.75),
        inset 0 0 0 4px rgba(202, 160, 58, 0.6);
}

.rl-num {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.rl-num.red { background: linear-gradient(160deg, #f43f5e, #b91c3c); }
.rl-num.black { background: linear-gradient(160deg, #232b52, #0a0d1e); border: 1px solid rgba(255, 255, 255, 0.14); }
.rl-num.green { background: linear-gradient(160deg, #10b981, #047857); }

.rl-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--surface-2), var(--bg));
    border: 2px solid rgba(202, 160, 58, 0.45);
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.rl-hub-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    transition: color 0.3s;
}

.rl-hub-num.red { color: #fb7185; }
.rl-hub-num.black { color: #cbd5f5; }
.rl-hub-num.green { color: #34d399; }

.rl-hub-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.pick-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.pick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
}

.pick-btn .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.pick-btn .dot.red { background: #e11d48; }
.pick-btn .dot.black { background: #10152e; border: 1px solid rgba(255,255,255,0.3); }
.pick-btn .dot.green { background: #059669; }

.pick-btn.active {
    border-color: var(--teal);
    background: rgba(45, 212, 191, 0.12);
    transform: translateY(-2px);
}

.game-note {
    max-width: 900px;
    margin: 34px auto 0;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.game-note i {
    color: var(--amber);
    font-size: 1.1rem;
    margin-top: 2px;
}

.game-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-actions .btn-glow,
    .age-chip {
        display: none;
    }
    .hero {
        padding: 56px 0 70px;
    }
    .games,
    .about,
    .why {
        padding: 72px 0;
    }
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .disclaimer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 34px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .games-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .navbar-wrap {
        padding-top: 14px;
    }
    .main-nav {
        border-radius: 20px;
    }
    .hero-stats {
        gap: 18px;
    }
    .stat-num {
        font-size: 1.6rem;
    }
    .stat-divider {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions .cookie-accept {
        flex: 1;
        justify-content: center;
    }
    .game-panel {
        padding: 26px 20px;
    }
    .legal-card {
        padding: 28px 22px;
    }
    .reel {
        width: 84px;
        height: 104px;
        font-size: 2.2rem;
    }
    .pcard {
        width: 70px;
        height: 98px;
    }
    .roulette {
        width: 290px;
        height: 290px;
    }
    .rl-hub {
        width: 104px;
        height: 104px;
    }
    .rl-hub-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-tag {
        display: none;
    }
    .hero-actions .btn-glow,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}
