* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.7;
}

/* Header */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a0a0a 100%);
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #dc2626;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.brand-symbol {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.brand-symbol::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}

/* Navigation */
.navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navigation a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    padding: 10px 0;
    position: relative;
}

.navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dc2626;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navigation a:hover {
    color: #dc2626;
}

.navigation a:hover::before {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid #dc2626;
    color: #dc2626;
    font-size: 1.5rem;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Content */
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 35px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 50px 0 25px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 15px;
}

p {
    margin-bottom: 22px;
    color: #d1d5db;
    font-size: 1.08rem;
}

/* Alert Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(153, 27, 27, 0.15) 100%);
    border: 2px solid #dc2626;
    padding: 30px;
    margin: 35px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.highlight-box strong {
    color: #dc2626;
}

.caution-box {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(161, 98, 7, 0.15) 100%);
    border: 2px solid #eab308;
    padding: 30px;
    margin: 35px 0;
    border-radius: 10px;
}

.caution-box strong {
    color: #fbbf24;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 60px 0;
}

.feature-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
    border: 2px solid #991b1b;
    padding: 40px;
    border-radius: 15px;
    transition: all 0.4s;
    text-align: center;
}

.feature-panel:hover {
    border-color: #dc2626;
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.feature-panel h3 {
    margin-top: 0;
}

.feature-panel p {
    color: #9ca3af;
    font-size: 1rem;
}

/* Game Display */
.game-display {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
    border: 3px solid #dc2626;
    padding: 45px;
    border-radius: 15px;
    margin: 60px 0;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.game-viewport {
    width: 100%;
    max-width: 1000px;
    height: 640px;
    margin: 30px auto;
    display: block;
    border: 4px solid #991b1b;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

/* Footer */
.bottom-footer {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a0a0a 100%);
    border-top: 2px solid #dc2626;
    margin-top: 100px;
    padding: 60px 35px 35px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.support-info h3 {
    color: #dc2626;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.support-info p {
    color: #9ca3af;
    margin-bottom: 25px;
}

.support-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.support-nav a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.support-nav a:hover {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.legal-text {
    border-top: 1px solid #991b1b;
    margin-top: 35px;
    padding-top: 25px;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
    border: 3px solid #dc2626;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 80px rgba(220, 38, 38, 0.5);
}

.age-panel h2 {
    color: #dc2626;
    margin-bottom: 25px;
    margin-top: 0;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.age-panel p {
    color: #d1d5db;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.age-choices {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.age-choice {
    padding: 18px 45px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.age-confirm {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.age-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
}

.age-reject {
    background: #374151;
    color: #9ca3af;
}

.age-reject:hover {
    background: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
        transition: left 0.3s;
        padding-top: 80px;
        border-right: 2px solid #dc2626;
        overflow-y: auto;
    }

    .navigation.active {
        left: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .navigation li {
        border-bottom: 1px solid #991b1b;
    }

    .navigation a {
        display: block;
        padding: 25px 40px;
    }

    .navigation a::before {
        display: none;
    }

    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .wrapper {
        padding: 45px 22px;
    }

    .game-viewport {
        height: 420px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .age-panel {
        margin: 20px;
        padding: 40px 28px;
    }

    .age-choices {
        flex-direction: column;
    }
}
