@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Slab', serif;
    background: #1a0505;
    background-image: 
        radial-gradient(ellipse at top, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(178, 34, 34, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.9), rgba(255, 69, 0, 0.9));
    padding: 1.8rem 0;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #ff4500;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4500, #ffa500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #1a0505;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.6);
    transform: rotate(-5deg);
}

.logo-text {
    font-size: 2.3rem;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.primary-nav a {
    display: block;
    padding: 0.9rem 1.8rem;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-nav a:hover, .primary-nav a.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffa500;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: rgba(255, 69, 0, 0.8);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

.intro-banner {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(178, 34, 34, 0.2));
    border: 3px solid rgba(255, 69, 0, 0.5);
    border-radius: 15px;
    padding: 3.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.3);
}

h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ff4500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ff6347;
    margin-bottom: 1.3rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffa500;
    margin-bottom: 1rem;
}

.alert-box {
    background: rgba(255, 0, 0, 0.15);
    border: 3px solid #dc143c;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.alert-box h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.alert-box ul {
    list-style: none;
    padding-left: 0;
}

.alert-box li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.alert-box li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.grid-item {
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.grid-item:hover {
    border-color: rgba(255, 165, 0, 0.7);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    transform: translateY(-5px);
}

.grid-item h3 {
    margin-bottom: 1.3rem;
}

.grid-item p {
    line-height: 1.9;
    color: #ddd;
}

.info-block {
    background: rgba(178, 34, 34, 0.2);
    border: 2px solid rgba(255, 69, 0, 0.4);
    border-radius: 15px;
    padding: 3rem;
    margin: 2.5rem 0;
}

.info-block p {
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.info-block ul, .info-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-block li {
    margin-bottom: 0.8rem;
    line-height: 1.9;
    color: #ddd;
}

.game-showcase {
    text-align: center;
    margin: 4rem 0;
}

.game-box {
    background: rgba(0, 0, 0, 0.5);
    border: 4px solid #ff4500;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.page-footer {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.5), rgba(255, 69, 0, 0.5));
    border-top: 4px solid #ff4500;
    padding: 3rem 2.5rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-inner h3 {
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.support-links a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.support-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 5, 5, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, #1a0505, #2a0808);
    border: 4px solid #ff4500;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 650px;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.6);
}

.gate-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.gate-content p {
    line-height: 1.9;
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.gate-buttons button {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    transition: all 0.3s ease;
}

.btn-enter {
    background: linear-gradient(135deg, #ff4500, #ffa500);
    color: #1a0505;
}

.btn-enter:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.7);
}

.btn-exit {
    background: #8b0000;
    color: white;
}

.btn-exit:hover {
    background: #a00000;
    transform: scale(1.08);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }
    
    .primary-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(26, 5, 5, 0.98);
        padding: 2rem;
        transform: translateY(-200%);
        transition: transform 0.3s ease;
        border-bottom: 4px solid #ff4500;
    }
    
    .primary-nav.active {
        transform: translateY(0);
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-nav a {
        display: block;
        text-align: center;
        padding: 1.2rem;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .intro-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 500px;
    }
}