* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 3px solid #C41E3A;
    border-radius: 15px;
    padding: 3rem 2.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(196, 30, 58, 0.4);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1px;
}

.age-gate-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-actions button {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-confirm {
    background: linear-gradient(145deg, #C41E3A, #8B0000);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-confirm:hover {
    background: linear-gradient(145deg, #8B0000, #C41E3A);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-decline {
    background: #333;
    color: #999;
    border: 2px solid #555;
}

.btn-decline:hover {
    background: #444;
    border-color: #666;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
    border-bottom: 2px solid #C41E3A;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 32px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    border-bottom-color: #C41E3A;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(145deg, #1a0a0a, #2a1a1a);
    border-bottom: 3px solid #C41E3A;
    padding: 5rem 0;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.15), transparent);
    pointer-events: none;
}

.hero-text {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFD700;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.lead {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid #C41E3A;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Featured Game */
.featured-game {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1.2rem;
    color: #999;
}

.game-frame {
    background: #1a1a1a;
    border: 3px solid #C41E3A;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 8px;
}

/* Platform Features */
.platform-features {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #C41E3A;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.4);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Compliance Info */
.compliance-info {
    padding: 4rem 0;
}

.compliance-card {
    background: linear-gradient(145deg, #2a1a1a, #1a0a0a);
    border: 3px solid #C41E3A;
    border-radius: 12px;
    padding: 3rem;
}

.compliance-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFD700;
    text-align: center;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.compliance-item strong {
    display: block;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.compliance-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Action Banner */
.action-banner {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(145deg, #1a0a0a, #0a0a0a);
    border-top: 2px solid #C41E3A;
    border-bottom: 2px solid #C41E3A;
}

.action-banner h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.action-banner p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(145deg, #C41E3A, #8B0000);
    color: #FFD700;
    padding: 1.3rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(145deg, #8B0000, #C41E3A);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Play Page */
.play-header {
    padding: 3.5rem 0;
    text-align: center;
    background: linear-gradient(145deg, #1a0a0a, #2a1a1a);
    border-bottom: 2px solid #C41E3A;
}

.play-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.play-instructions {
    padding: 3rem 0;
}

.instructions-box {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #C41E3A;
    border-radius: 12px;
    padding: 2.5rem;
}

.instructions-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.instructions-box p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid #C41E3A;
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tip-emoji {
    font-size: 2rem;
}

.tip-text {
    font-weight: 600;
    font-size: 1rem;
}

.play-area {
    padding: 3rem 0 5rem 0;
}

.game-wrapper {
    background: #1a1a1a;
    border: 3px solid #C41E3A;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 8px;
}

/* Legal Pages */
.legal-header {
    padding: 3.5rem 0;
    text-align: center;
    background: linear-gradient(145deg, #1a0a0a, #2a1a1a);
    border-bottom: 2px solid #C41E3A;
}

.legal-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.date-stamp {
    color: #777;
    font-size: 1.05rem;
}

.legal-body {
    padding: 4rem 0;
}

.legal-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin: 2.5rem 0 1.3rem 0;
    letter-spacing: 1px;
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #C41E3A;
    margin: 2rem 0 1rem 0;
}

.legal-text p {
    margin-bottom: 1.3rem;
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-text ul {
    margin: 1.3rem 0 1.8rem 2.5rem;
    color: #b0b0b0;
}

.legal-text li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    color: #C41E3A;
    border-bottom-color: #C41E3A;
}

.notice-banner {
    background: linear-gradient(145deg, #2a1a1a, #1a0a0a);
    border: 3px solid #C41E3A;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
}

.notice-banner strong {
    color: #FFD700;
    font-size: 1.2rem;
}

.notice-banner.important h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.notice-banner.important ul {
    list-style: none;
    margin: 0;
}

.notice-banner.important li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.notice-banner.important li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C41E3A;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 3px solid #C41E3A;
    padding: 4rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.3rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: #999;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #777;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        display: none;
        border-bottom: 2px solid #C41E3A;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: 1.2rem;
        border-bottom: 1px solid #333;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .game-frame iframe,
    .game-wrapper iframe {
        height: 500px;
    }

    .feature-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .action-banner h2,
    .play-header h1,
    .legal-header h1 {
        font-size: 2.2rem;
    }

    .age-gate-box {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .age-gate-box h2 {
        font-size: 1.7rem;
    }

    .age-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
