:root {
    --color-bg-deep: #0d0618;
    --color-bg-dark: #150a24;
    --color-bg-card: #1e1033;
    --color-primary: #7c3aed;
    --color-primary-light: #a78bfa;
    --color-accent: #06d6a0;
    --color-accent-glow: rgba(6, 214, 160, 0.35);
    --color-gold: #fbbf24;
    --color-gold-soft: rgba(251, 191, 36, 0.15);
    --color-text: #f0eaf8;
    --color-text-muted: #a89bb8;
    --color-border: rgba(167, 139, 250, 0.18);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    background: rgba(13, 6, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.site-header .navbar {
    padding: 16px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #5b21b6 100%);
    border-radius: var(--radius-sm);
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.site-logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-headline {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo-subline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-text);
    background: rgba(124, 58, 237, 0.12);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
    border-radius: 2px;
}

.mobile-nav-toggle {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    background: rgba(124, 58, 237, 0.1);
    box-shadow: none;
}

.mobile-nav-toggle .navbar-toggler-icon {
    display: none;
}

.mobile-nav-toggle:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 20px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 6, 24, 0.88) 0%,
        rgba(30, 16, 51, 0.75) 40%,
        rgba(13, 6, 24, 0.85) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-text);
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #6d28d9 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4);
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.55);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-hero-secondary:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 28px;
    background: rgba(30, 16, 51, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    max-width: 520px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

.hero-visual {
    position: relative;
    padding: 30px 0;
}

.hero-card {
    position: relative;
    background: linear-gradient(160deg, rgba(30, 16, 51, 0.95) 0%, rgba(21, 10, 36, 0.98) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-glow);
}

.hero-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero-card-header i {
    font-size: 16px;
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.hero-card-text {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary-light);
}

.hero-tag i {
    font-size: 11px;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(13, 6, 24, 0.9);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card i {
    color: var(--color-gold);
    font-size: 16px;
}

.hero-floating-card-1 {
    top: 0;
    right: -10px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 60px;
    left: -20px;
    animation-delay: 1.3s;
}

.hero-floating-card-3 {
    bottom: -10px;
    right: 30px;
    animation-delay: 2.6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    color: var(--color-bg-deep);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

.games-section {
    padding: 80px 0 100px;
    background: var(--color-bg-deep);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}

.game-card {
    background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.25);
}

.game-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card:hover .game-card-image img {
    transform: scale(1.06);
}

.game-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.btn-play-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6d28d9 100%);
    border-radius: var(--radius-sm);
    border: none;
    margin-top: auto;
}

.btn-play-now:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.section-title-left {
    text-align: left;
}

.about-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.about-text {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(30, 16, 51, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), transform var(--transition);
}

.about-feature-card:hover {
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateX(6px);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #5b21b6 100%);
    border-radius: var(--radius-sm);
    font-size: 22px;
    color: #fff;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.about-feature-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.platform-section {
    padding: 100px 0;
    background: var(--color-bg-deep);
}

.platform-card {
    height: 100%;
    padding: 32px 24px;
    background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 214, 160, 0.35);
    box-shadow: 0 12px 40px rgba(6, 214, 160, 0.12);
}

.platform-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.25);
    border-radius: 50%;
    font-size: 26px;
    color: var(--color-accent);
}

.platform-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.platform-card-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.disclaimer-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
}

.disclaimer-box {
    padding: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 214, 160, 0.06) 100%);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-lg);
}

.disclaimer-badge-group {
    display: flex;
    justify-content: center;
}

.disclaimer-age-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

.disclaimer-age-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.disclaimer-age-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.disclaimer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.disclaimer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(13, 6, 24, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.disclaimer-tag i {
    color: var(--color-gold);
    font-size: 14px;
}

.community-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.community-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-stat-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.community-stat-block i {
    font-size: 32px;
    color: var(--color-primary-light);
    width: 48px;
    text-align: center;
}

.community-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

.community-stat-txt {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.responsible-section {
    padding: 100px 0;
    background: var(--color-bg-deep);
}

.responsible-card {
    height: 100%;
    padding: 36px 28px;
    background: rgba(30, 16, 51, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.responsible-card i {
    font-size: 36px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.responsible-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.responsible-card-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}

.site-footer {
    background: #080312;
    border-top: 1px solid var(--color-border);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-about {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-resources-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-resources {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-resources li {
    margin-bottom: 14px;
}

.footer-resources a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-light);
    padding: 10px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 100%;
}

.footer-resources a:hover {
    color: var(--color-accent);
    border-color: rgba(6, 214, 160, 0.35);
    background: rgba(6, 214, 160, 0.08);
}

.footer-disclaimer {
    padding: 0 0 40px;
}

.footer-disclaimer-box {
    padding: 32px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
}

.footer-disclaimer-box p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.footer-disclaimer-box p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer-box strong {
    color: var(--color-gold);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.policy-page {
    padding: 60px 0 100px;
    background: var(--color-bg-deep);
    min-height: calc(100vh - 200px);
}

.policy-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.policy-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

.policy-updated {
    font-size: 14px;
    color: var(--color-text-muted);
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 36px 0 16px;
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-light);
    margin: 28px 0 12px;
}

.policy-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 0 0 20px;
    padding-left: 24px;
}

.policy-content li {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-content a:hover {
    color: var(--color-primary-light);
}

body.scroll-locked,
body:has(.age-popup-overlay.is-visible) {
    overflow: hidden;
}

.age-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 3, 18, 0.92);
    backdrop-filter: blur(8px);
}

.age-popup-overlay.is-visible {
    display: flex;
}

.age-popup {
    width: 100%;
    max-width: 520px;
    padding: 40px 36px;
    background: linear-gradient(160deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.age-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.12);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gold);
}

.age-popup-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.age-popup-text {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: left;
}

.age-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    padding: 16px;
    background: rgba(13, 6, 24, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
}

.age-checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.age-checkbox-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.btn-age-accept {
    width: 100%;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6d28d9 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-age-accept:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-age-accept:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    padding: 20px;
    background: rgba(8, 3, 18, 0.96);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent) 0%, #05b384 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.35);
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-text {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.75;
}

.inner-page {
    padding: 80px 0 100px;
    background: var(--color-bg-deep);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.content-block p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-email-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 32px;
    margin-top: 24px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.contact-email-box i {
    font-size: 24px;
    color: var(--color-accent);
}

.contact-email-box a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-email-box a:hover {
    color: var(--color-accent);
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(30, 16, 51, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--transition);
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.08);
}

.faq-question i {
    color: var(--color-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.game-play-page {
    padding: 40px 0 100px;
    background: var(--color-bg-deep);
}

.game-play-header {
    margin-bottom: 32px;
    text-align: center;
}

.game-play-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

.game-play-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 40px;
    aspect-ratio: 16 / 10;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-disclaimer-box {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 32px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
}

.game-disclaimer-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.game-disclaimer-box p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.game-disclaimer-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 16px;
        padding: 16px;
        background: rgba(21, 10, 36, 0.98);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
    }

    .navbar-nav {
        gap: 4px;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 48px 0 90px;
    }

    .hero-visual {
        margin-top: 48px;
        padding: 20px 0 40px;
    }

    .hero-floating-card-1 {
        right: 0;
        top: -10px;
    }

    .hero-floating-card-2 {
        left: 0;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        flex: 1 1 30%;
        min-width: 90px;
        text-align: center;
    }

    .disclaimer-box {
        padding: 32px 24px;
    }

    .section-title-left {
        text-align: center;
    }

    .about-section .section-badge,
    .community-section .section-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-floating-card {
        font-size: 11px;
        padding: 10px 14px;
    }

    .hero-floating-card-3 {
        display: none;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .btn-cookie-accept {
        width: 100%;
    }

    .age-popup {
        padding: 32px 24px;
    }
}
