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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
header {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    border-bottom: 3px solid #00d4ff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 4rem 3rem;
    margin: 3rem 0;
    border: 1px solid #333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
}

/* Alert Panel */
.alert-panel {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 6px solid #990000;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.alert-panel h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.alert-panel ul {
    list-style: none;
}

.alert-panel li {
    color: #fff;
    padding: 0.7rem 0;
    font-weight: 600;
    font-size: 1.05rem;
}

.alert-panel li:before {
    content: '🚫 ';
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Content Box */
.content-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.content-box h2 {
    color: #00d4ff;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box h3 {
    color: #0066ff;
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-box p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.content-box ul,
.content-box ol {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.content-box li {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 0.7rem;
}

/* Game Display */
.game-display {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.game-display h2 {
    color: #00d4ff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: 2px solid #00d4ff;
    border-radius: 10px;
    background: #000;
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    border-top: 3px solid #00d4ff;
    padding: 3.5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-column a:hover {
    color: #00d4ff;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #808080;
    font-size: 0.95rem;
}

/* 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: 3000;
}

.age-gate.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-panel {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 3.5rem;
    border-radius: 15px;
    border: 2px solid #00d4ff;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.gate-panel h2 {
    color: #00d4ff;
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gate-panel p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.gate-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.gate-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.gate-btn.accept {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.gate-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.gate-btn.decline {
    background: #333;
    color: #b0b0b0;
}

.gate-btn.decline:hover {
    background: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav ul {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        padding: 2.5rem 0;
        text-align: center;
        transition: left 0.3s;
        border-top: 3px solid #00d4ff;
        gap: 0.5rem;
    }
    
    .main-nav ul.active {
        left: 0;
    }
    
    .hero-section {
        padding: 2.5rem 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    .game-embed {
        height: 450px;
    }
    
    .gate-panel {
        margin: 0 20px;
        padding: 2.5rem;
    }
    
    .gate-actions {
        flex-direction: column;
    }
    
    .gate-btn {
        width: 100%;
    }
}
