@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-red: #ff0000;
    --deep-orange: #ff6600;
    --dark-red: #8b0000;
    --ember: #ff4500;
    --charcoal: #1a1a1a;
    --smoke: #2d2d2d;
    --light-text: #ffffff;
    --warm-gray: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #2d0a0a);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Top Navigation Bar */
.navbar {
    background: linear-gradient(90deg, var(--dark-red), var(--charcoal));
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--flame-red);
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 72, 0, 0.45));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: var(--warm-gray);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(135deg, var(--flame-red), var(--deep-orange));
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background: var(--flame-red);
    border-radius: 3px;
    transition: 0.3s;
}

/* Main Content */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-main {
    background: linear-gradient(135deg, var(--dark-red), var(--ember));
    padding: 4rem;
    border-radius: 15px;
    border: 2px solid var(--flame-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.2) 0%, transparent 60%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-main h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-main p {
    font-size: 1.3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background: var(--smoke);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--ember);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block {
    background: linear-gradient(to bottom, var(--smoke), var(--charcoal));
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--ember);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.content-block h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--flame-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.content-block h3 {
    color: var(--deep-orange);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.content-block p,
.content-block li {
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin-left: 2rem;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #ff4500, #ff0000);
    border: 3px solid #ffff00;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.5);
}

.alert-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.alert-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Game Container */
.game-showcase {
    background: var(--charcoal);
    border: 3px solid var(--flame-red);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 50px rgba(255, 0, 0, 0.4);
}

.game-showcase h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--flame-red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.game-frame {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--charcoal), var(--dark-red));
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--flame-red);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--deep-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--flame-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer p {
    color: var(--warm-gray);
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--charcoal), var(--dark-red));
    border: 4px solid var(--flame-red);
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

.age-gate-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--flame-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.age-gate-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.age-yes {
    background: linear-gradient(135deg, var(--flame-red), var(--deep-orange));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

.age-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

.age-no {
    background: transparent;
    color: var(--flame-red);
    border: 3px solid var(--flame-red);
}

.age-no:hover {
    background: var(--flame-red);
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--charcoal);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid var(--flame-red);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-main {
        padding: 2.5rem;
    }
    
    .hero-main h1 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
