* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0d0000;
    color: #e8e8e8;
    min-height: 100vh;
    line-height: 1.65;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #1a0000, #330000);
    padding: 48px 38px;
    border-radius: 0;
    text-align: center;
    max-width: 520px;
    border: 3px solid #ff0000;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}

.age-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #ff0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.age-content p {
    font-size: 1.18rem;
    margin-bottom: 35px;
    color: #cccccc;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-age {
    padding: 16px 42px;
    font-size: 1.12rem;
    border: 3px solid #ff0000;
    background: #1a0000;
    color: #ff0000;
    cursor: pointer;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-age:hover {
    background: #ff0000;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

header {
    background: rgba(26, 0, 0, 0.9);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff0000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff0000;
    letter-spacing: 5px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 38px;
}

nav a {
    text-decoration: none;
    color: #cccccc;
    font-size: 1.12rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a:hover {
    color: #ff0000;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: #ff0000;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero {
    padding: 110px 32px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.15) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 42px;
    color: #cccccc;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 55px;
    background: #ff0000;
    color: #000000;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid #ff0000;
}

.cta-button:hover {
    background: #000000;
    color: #ff0000;
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.8);
}

.features {
    padding: 85px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ff0000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 0, 0, 0.8), rgba(51, 0, 0, 0.5));
    padding: 38px 32px;
    border-radius: 0;
    border: 2px solid rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #ff0000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    color: #cccccc;
    font-size: 1.08rem;
    font-weight: 500;
}

.game-section {
    padding: 85px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-container {
    background: rgba(26, 0, 0, 0.8);
    border-radius: 0;
    overflow: hidden;
    border: 4px solid #ff0000;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.4);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
}

footer {
    background: rgba(26, 0, 0, 0.95);
    padding: 60px 32px 32px;
    margin-top: 100px;
    border-top: 4px solid #ff0000;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff0000;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links a:hover {
    color: #ff3333;
}

.footer-disclaimer {
    font-size: 0.95rem;
    color: #999999;
    margin: 32px 0;
    line-height: 1.75;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 85px 32px;
}

.legal-content h1 {
    font-size: 3.2rem;
    color: #ff0000;
    margin-bottom: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-top: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

.legal-content ul {
    margin: 20px 0 20px 42px;
    color: #cccccc;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(26, 0, 0, 0.98);
        transition: right 0.3s ease;
        padding-top: 80px;
        border-left: 3px solid #ff0000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 22px 32px;
        border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
