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

body {
    font-family: 'Oswald', sans-serif;
    background: #1a0000;
    color: #fff3e0;
    line-height: 1.75;
    min-height: 100vh;
}

.top-bar {
    background: linear-gradient(90deg, #8b0000 0%, #ff4444 50%, #8b0000 100%);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

header {
    background: rgba(20, 0, 0, 0.95);
    border-bottom: 4px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 30px rgba(255, 68, 68, 0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-logo {
    width: 70px;
    height: 70px;
}

.brand-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(255, 68, 68, 0.8);
}

.nav-toggle {
    display: none;
    background: #8b0000;
    border: 2px solid #ffd700;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
}

.nav-toggle-line {
    width: 30px;
    height: 4px;
    background: #ffd700;
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

.primary-nav a {
    display: inline-block;
    padding: 0.9rem 2rem;
    color: #fff3e0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8b0000, #a00000);
    border: 2px solid #ffd700;
    border-radius: 5px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.primary-nav a:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

.hero-block {
    background: linear-gradient(135deg, #8b0000, #5a0000);
    padding: 5rem 4rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 4rem;
    border: 4px solid #ffd700;
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-block h1 {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-block p {
    font-size: 1.5rem;
    color: #fff3e0;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    line-height: 2;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(90, 0, 0, 0.9));
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 3px solid #ffd700;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(160, 0, 0, 0.9), rgba(100, 0, 0, 0.9));
}

.feature-card h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.important-notice {
    background: rgba(255, 215, 0, 0.15);
    border: 4px solid #ffd700;
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem 0;
}

.important-notice h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.important-notice ul {
    list-style-position: inside;
}

.important-notice li {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.game-display {
    background: rgba(20, 0, 0, 0.9);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 4px solid #ffd700;
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.4);
}

.game-display h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-player {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 8px;
    background: #000;
}

footer {
    background: rgba(20, 0, 0, 0.95);
    border-top: 4px solid #ffd700;
    padding: 3.5rem 2.5rem;
    margin-top: 4rem;
}

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

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

.footer-menu a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.age-check-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check-modal.active {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #8b0000, #5a0000);
    padding: 4.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    border: 5px solid #ffd700;
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5);
}

.age-check-box h2 {
    font-size: 3.2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.age-check-box p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.age-check-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-check-button {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-check-confirm {
    background: #ffd700;
    color: #8b0000;
    border: 3px solid #ffd700;
}

.age-check-confirm:hover {
    background: #ffed4e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.age-check-deny {
    background: #ff4444;
    color: #fff;
    border: 3px solid #ff4444;
}

.age-check-deny:hover {
    background: #ff6666;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }
    
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(20, 0, 0, 0.98);
        padding: 6rem 2rem;
        transition: right 0.4s;
        border-left: 4px solid #ffd700;
    }
    
    .primary-nav.show {
        right: 0;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .primary-nav a {
        display: block;
        text-align: center;
        padding: 1.2rem;
    }
    
    .hero-block h1 {
        font-size: 2.8rem;
    }
    
    .hero-block p {
        font-size: 1.2rem;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .brand-text {
        font-size: 1.8rem;
    }
    
    .game-player {
        height: 500px;
    }
}
