@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&family=Montserrat:wght@400;500;700&display=swap');

:root {
    --deep-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --smoke-gray: #2d2d2d;
    --mist-gray: #404040;
    --crimson-red: #8b1538;
    --blood-red: #d41f3e;
    --ash-white: #e8e8e8;
    --soft-white: #f5f5f5;
    --accent-orange: #ff6b35;
    --smoke-blue: #4a5568;
    --ember-orange: #ff8c42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    color: var(--ash-white);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 21, 56, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 85, 104, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
    border-bottom: 3px solid var(--crimson-red);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blood-red);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 31, 62, 0.6), 0 0 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo:hover::after {
    opacity: 1;
}

.brand-logo:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--ash-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--blood-red);
    border-bottom-color: var(--blood-red);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--blood-red);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--dark-gray);
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 3px solid var(--crimson-red);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    text-align: center;
    padding: 5rem 2rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 50%, rgba(26, 26, 26, 0.8) 100%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 21, 56, 0.08) 0%, transparent 50%);
    margin: 3rem 0;
    border-left: 5px solid var(--crimson-red);
    border-right: 5px solid var(--crimson-red);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%),
        radial-gradient(circle, rgba(139, 21, 56, 0.03) 0%, transparent 70%);
    animation: smokeDrift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes smokeDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -20px) rotate(1deg); }
    50% { transform: translate(10px, -10px) rotate(-1deg); }
    75% { transform: translate(-5px, -15px) rotate(0.5deg); }
}

.smoke-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 21, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(74, 85, 104, 0.05) 0%, transparent 50%);
    animation: smokeRise 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes smokeRise {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }
    25% { 
        opacity: 0.6;
        transform: translateY(-10px) scale(1.05);
    }
    50% { 
        opacity: 0.4;
        transform: translateY(-20px) scale(1.1);
    }
    75% { 
        opacity: 0.7;
        transform: translateY(-15px) scale(1.02);
    }
}

.hero-banner h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--blood-red);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(212, 31, 62, 0.8),
        0 0 20px rgba(255, 107, 53, 0.4),
        2px 2px 8px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Content Sections */
.content-section {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-box {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.7) 50%, rgba(26, 26, 26, 0.9) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    border: 2px solid var(--crimson-red);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 0;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-box:hover::before {
    left: 100%;
}

.content-box:hover {
    border-color: var(--blood-red);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
}

.content-box h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: var(--blood-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 31, 62, 0.5);
    position: relative;
    z-index: 2;
}

.content-box h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin: 2rem 0 1rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 2;
}

.content-box p {
    margin-bottom: 1rem;
    color: var(--ash-white);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.content-box ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-box li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Warning Panels */
.warning-panel {
    background: 
        linear-gradient(135deg, rgba(139, 21, 56, 0.15) 0%, rgba(212, 31, 62, 0.1) 100%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    border-left: 6px solid var(--crimson-red);
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

.warning-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%);
    animation: warningGlow 3s ease-in-out infinite;
}

@keyframes warningGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.warning-panel h3 {
    font-family: 'Raleway', sans-serif;
    color: var(--blood-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(212, 31, 62, 0.6);
    position: relative;
    z-index: 2;
}

.warning-panel.info {
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    border-left-color: var(--accent-orange);
}

.warning-panel.info h3 {
    color: var(--accent-orange);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
}

/* Game Area */
.game-area {
    background: 
        linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(45, 45, 45, 0.9) 100%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 21, 56, 0.06) 0%, transparent 50%);
    border: 3px solid var(--crimson-red);
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.game-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    animation: gameAreaGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gameAreaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.game-area h2 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: var(--blood-red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 15px rgba(212, 31, 62, 0.8),
        0 0 30px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 2;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    padding: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.game-container iframe {
    border: none;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 107, 53, 0.2);
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    border-top: 3px solid var(--crimson-red);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(139, 21, 56, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h3 {
    font-family: 'Raleway', sans-serif;
    color: var(--blood-red);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(212, 31, 62, 0.5);
}

.footer-col p {
    line-height: 1.8;
    color: var(--ash-white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.footer-col a {
    display: block;
    color: var(--ash-white);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--blood-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--smoke-gray);
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Age Verification Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
}

.age-verification.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.verification-box {
    background: linear-gradient(135deg, var(--dark-gray), var(--smoke-gray));
    border: 4px solid var(--crimson-red);
    padding: 3.5rem;
    max-width: 550px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.5);
}

.verification-box h2 {
    font-family: 'Raleway', sans-serif;
    color: var(--blood-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.verification-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.verification-box .highlight {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin: 2rem 0;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.verify-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-btn.accept {
    background: var(--blood-red);
    color: white;
}

.verify-btn.accept:hover {
    background: var(--accent-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

.verify-btn.decline {
    background: transparent;
    color: var(--ash-white);
    border: 2px solid var(--ash-white);
}

.verify-btn.decline:hover {
    background: var(--smoke-gray);
}

/* Additional Smoke Effects */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 21, 56, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner {
        padding: 3rem 1.5rem;
    }

    .content-box {
        padding: 2rem;
        margin: 1.5rem 0;
    }

    .game-container {
        min-height: 450px;
        padding: 1rem;
    }
    
    .brand-logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .warning-panel {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }

    .verification-box {
        padding: 2rem;
    }

    .verification-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .game-area {
        padding: 1.5rem;
    }
    
    .content-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .warning-panel {
        padding: 1rem;
        margin: 1rem 0;
    }
}
