:root {
    --bg-deep: #0c0b09;
    --bg-surface: #141210;
    --bg-elevated: #1c1916;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --gold-dark: #9a7b1a;
    --emerald: #2d6a4f;
    --emerald-bright: #40916c;
    --cream: #f0ebe3;
    --cream-muted: #a89f92;
    --border: rgba(201, 162, 39, 0.18);
    --border-subtle: rgba(240, 235, 227, 0.08);
    --glow-gold: rgba(201, 162, 39, 0.2);
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 6px;
    --radius-lg: 14px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.topbar {
    background: var(--bg-surface);
    border-bottom: 2px solid var(--gold-dark);
    padding: 9px 0;
    position: relative;
    z-index: 100;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.topbar-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topbar-icon i {
    font-size: 0.7rem;
    color: var(--gold);
}

.topbar-text {
    font-size: 0.78rem;
    color: var(--cream-muted);
    text-align: center;
    line-height: 1.4;
}

.site-header {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 99;
}

.navbar {
    padding: 18px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, var(--gold-dark), var(--gold));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bg-deep);
    transition: transform var(--transition);
}

.brand-logo:hover .brand-icon {
    transform: rotate(15deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.68rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 9px 11px;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--glow-gold);
    outline: none;
}

.toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--cream-muted) !important;
    padding: 10px 18px !important;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--cream) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--gold-light) !important;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: saturate(0.6) brightness(0.5);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(45, 106, 79, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(12, 11, 9, 0.7) 0%, rgba(12, 11, 9, 0.92) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 50px 0 70px;
}

.hero-panel {
    background: rgba(20, 18, 16, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    position: relative;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 4px 4px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero-label span:last-child {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cream);
}

.title-accent {
    display: block;
    color: var(--gold-light);
    margin-top: 4px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--cream-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--glow-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-subtle);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.06);
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.metric-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color var(--transition), transform var(--transition);
}

.metric-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.metric-card-wide {
    grid-column: 1 / -1;
}

.metric-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.78rem;
    color: var(--cream-muted);
    line-height: 1.35;
}

.games-section {
    padding: 90px 0 100px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

.section-label span:nth-child(2) {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--cream);
}

.section-desc {
    color: var(--cream-muted);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto;
}

.game-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.game-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.06);
}

.game-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 11, 9, 0.7) 100%);
    pointer-events: none;
}

.game-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(12, 11, 9, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
}

.game-type i {
    font-size: 0.65rem;
}

.game-card-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
    transition: color var(--transition);
    display: inline-block;
}

.game-name:hover {
    color: var(--gold-light);
}

.game-desc {
    color: var(--cream-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 22px;
    flex: 1;
}

.btn-play {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
}

.content-section {
    padding: 90px 0;
}

.about-section {
    background: var(--bg-deep);
}

.section-label-left {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.section-label-left span:last-child {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
}

.content-text {
    color: var(--cream-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: border-color var(--transition);
}

.about-card:hover {
    border-color: var(--border);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.about-card-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cream);
}

.about-card p {
    color: var(--cream-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

.features-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.feature-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition);
}

.feature-box:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.feature-box-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(45, 106, 79, 0.15));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-box-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cream);
}

.feature-box p {
    color: var(--cream-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-section {
    padding: 70px 0;
}

.age-disclaimer-section {
    background: var(--bg-deep);
}

.money-disclaimer-section {
    background: var(--bg-surface);
}

.disclaimer-panel {
    display: flex;
    gap: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    align-items: flex-start;
}

.disclaimer-age {
    border-left: 4px solid var(--gold);
}

.disclaimer-money {
    border-left: 4px solid var(--emerald-bright);
}

.disclaimer-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-money .disclaimer-icon {
    background: rgba(64, 145, 108, 0.1);
}

.disclaimer-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.disclaimer-money .disclaimer-icon i {
    color: var(--emerald-bright);
}

.disclaimer-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cream);
    line-height: 1.3;
}

.disclaimer-content p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.disclaimer-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disclaimer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--cream);
}

.disclaimer-list li i {
    color: var(--gold);
    font-size: 0.75rem;
}

.responsible-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
}

.responsible-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    height: 100%;
    transition: border-color var(--transition);
}

.responsible-card:hover {
    border-color: var(--border);
}

.responsible-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.responsible-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cream);
}

.responsible-card p {
    color: var(--cream-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.footer-disclaimers {
    padding: 40px 0;
    background: rgba(201, 162, 39, 0.04);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-disclaimer-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    height: 100%;
}

.footer-disclaimer-box > i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-disclaimer-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.footer-disclaimer-box p {
    color: var(--cream-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cream);
}

.footer-desc {
    color: var(--cream-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 340px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--cream-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cream-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    color: var(--cream-muted);
    font-size: 0.82rem;
    margin: 0;
}

.legal-hero {
    padding: 60px 0 50px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    margin: 0;
}

.legal-content {
    padding: 60px 0 90px;
}

.legal-content .legal-updated {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin: 36px 0 14px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 24px 0 10px;
}

.legal-content p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    color: var(--cream-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 16px 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--gold-light);
}

.legal-content a:hover {
    color: var(--gold);
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.is-active {
    display: flex;
}

.popup-modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.35s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-icon {
    width: 72px;
    height: 72px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.popup-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}

.popup-modal p {
    color: var(--cream-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}

.popup-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin: 24px 0;
    cursor: pointer;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.popup-checkbox:has(input:checked) {
    border-color: var(--gold);
}

.popup-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-mark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all var(--transition);
}

.popup-checkbox input:checked + .checkbox-mark {
    background: var(--gold);
    border-color: var(--gold);
}

.popup-checkbox input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--bg-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.88rem;
    color: var(--cream);
    line-height: 1.5;
}

.btn-popup {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
}

.btn-popup:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    z-index: 9999;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner.is-active {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.cookie-text p {
    color: var(--cream-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
}

.cookie-text a {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 22px;
    font-size: 0.85rem;
}

.page-hero {
    padding: 70px 0 60px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 14px;
}

.page-hero p {
    color: var(--cream-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0;
}

.page-content {
    padding: 70px 0 90px;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--cream-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.contact-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--cream);
}

.contact-card p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    padding: 14px 28px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-email:hover {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

.game-page-section {
    padding: 50px 0 90px;
}

.game-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--cream);
    text-align: center;
    margin-bottom: 32px;
}

.game-disclaimer-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 4px solid var(--emerald-bright);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-disclaimer-box h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-disclaimer-box h3 i {
    color: var(--emerald-bright);
}

.game-disclaimer-box p {
    color: var(--cream-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-elevated);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        padding: 14px;
        margin-top: 14px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .nav-link::after {
        left: 16px;
        right: auto;
        width: 24px;
    }

    .hero-panel {
        padding: 36px 28px;
    }

    .hero-metrics {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
    }

    .topbar-text {
        font-size: 0.72rem;
    }

    .brand-tagline {
        display: none;
    }

    .hero-panel {
        padding: 28px 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card-wide {
        grid-column: auto;
    }

    .games-section {
        padding: 70px 0 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-panel {
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
    }

    .content-section {
        padding: 70px 0;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
