@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Teko:wght@500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0d0d0d;
    --deep-red: #8b0000;
    --bright-red: #dc143c;
    --dark-gray: #1a1a1a;
    --light-gray: #e0e0e0;
    --accent-red: #ff0000;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    background-image: 
        linear-gradient(rgba(139, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--light-gray);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--bright-red);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bright-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: var(--bright-red);
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--bright-red);
    color: var(--bright-red);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238b0000" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,138.7C1248,149,1344,139,1392,133.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Teko', sans-serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--bright-red);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--bright-red) 100%);
    color: white;
    padding: 1.2rem 4rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid var(--bright-red);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--accent-red) 100%);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2rem;
    border: 2px solid var(--deep-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    border-color: var(--bright-red);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.4);
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--bright-red);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.alert-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 2px solid var(--bright-red);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.alert-box::before {
    content: '⚠';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 2.5rem;
    background: #0d0d0d;
    padding: 0 10px;
    color: var(--bright-red);
}

.alert-box h3 {
    color: var(--bright-red);
    margin-bottom: 1rem;
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.alert-box ul {
    list-style: none;
    padding-left: 0;
}

.alert-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.alert-box li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--bright-red);
}

/* Game Container */
.game-container {
    background: #0d0d0d;
    padding: 2rem;
    margin: 3rem 0;
    border: 3px solid var(--bright-red);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    position: relative;
}

.game-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--deep-red), var(--bright-red), var(--deep-red));
    z-index: -1;
    opacity: 0.3;
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid var(--bright-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--bright-red);
    margin-bottom: 1rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bright-red);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--deep-red);
    opacity: 0.7;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem;
    border: 3px solid var(--bright-red);
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.6);
}

.age-modal-content h2 {
    font-family: 'Teko', sans-serif;
    color: var(--bright-red);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--bright-red) 100%);
    color: white;
    border: 2px solid var(--bright-red);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.btn-no {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d0d0d;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        display: none;
        border-bottom: 3px solid var(--bright-red);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--deep-red);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 400px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Legal Content Styling */
.legal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid var(--deep-red);
}

.legal-content h2 {
    color: var(--bright-red);
    margin-bottom: 1.5rem;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--bright-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--bright-red);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}