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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e5e7eb;
    min-height: 100vh;
    line-height: 1.65;
}

.site-header {
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 50%, #6d28d9 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-url {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-badge {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.site-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.site-navigation a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 32px;
    height: 4px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.2));
    padding: 5rem 3rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 4rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.intro-section h1 {
    font-size: 3.8rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.intro-section p {
    font-size: 1.35rem;
    color: #d1d5db;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

.alert-box {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    border: 3px solid #991b1b;
}

.alert-box h2 {
    color: #ffffff;
    font-size: 2.1rem;
    margin-bottom: 1.3rem;
    font-weight: 800;
}

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

.alert-box li {
    color: #ffffff;
    padding: 0.9rem 0;
    font-size: 1.18rem;
    font-weight: 600;
}

.alert-box li::before {
    content: "⚠️ ";
    margin-right: 0.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.benefit-card {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    padding: 2.8rem;
    border-radius: 25px;
    border: 2px solid #3f3f3f;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.benefit-card h3 {
    color: #a78bfa;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.benefit-card p {
    color: #d1d5db;
    font-size: 1.12rem;
    line-height: 1.75;
}

.game-display {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 30px;
    margin: 4rem 0;
    border: 3px solid #8b5cf6;
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.3);
}

.game-display h2 {
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.text-content {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    padding: 3.5rem;
    border-radius: 30px;
    margin: 3rem 0;
    border: 2px solid #3f3f3f;
}

.text-content h2 {
    color: #a78bfa;
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.text-content p {
    margin-bottom: 1.3rem;
    font-size: 1.15rem;
    color: #d1d5db;
    line-height: 1.85;
}

.text-content ul {
    margin: 1.2rem 0 1.2rem 2.5rem;
}

.text-content li {
    margin: 0.7rem 0;
    color: #d1d5db;
    font-size: 1.12rem;
}

.page-footer {
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 50%, #6d28d9 100%);
    padding: 4rem 2rem;
    margin-top: 6rem;
    text-align: center;
}

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

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.12rem;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    opacity: 0.8;
}

.footer-info {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

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

.age-verification.hidden {
    display: none;
}

.verification-panel {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    padding: 4rem;
    border-radius: 30px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.6);
    border: 3px solid #a78bfa;
}

.verification-panel h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    font-weight: 900;
}

.verification-panel p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.75;
}

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

.verification-actions button {
    padding: 1.3rem 4rem;
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Roboto', sans-serif;
}

.confirm-age {
    background: #10b981;
    color: white;
}

.confirm-age:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.deny-age {
    background: #ef4444;
    color: white;
}

.deny-age:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .site-navigation ul {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: linear-gradient(180deg, #6d28d9, #5b21b6);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2.5rem 0;
        gap: 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    }
    
    .site-navigation ul.active {
        left: 0;
    }
    
    .site-navigation li {
        padding: 1.3rem 0;
    }
    
    .intro-section h1 {
        font-size: 2.5rem;
    }
    
    .intro-section p {
        font-size: 1.1rem;
    }
    
    .game-embed {
        height: 520px;
    }
    
    .main-container {
        padding: 2.5rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
