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

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f23;
    color: #e0e7ff;
    min-height: 100vh;
    line-height: 1.7;
}

header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.site-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-symbol {
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: opacity 0.3s;
    position: relative;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 5rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.banner-section h1 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.banner-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto;
}

.alert-panel {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.3);
}

.alert-panel h2 {
    color: #ffffff;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

.alert-panel li {
    color: #ffffff;
    padding: 0.7rem 0;
    font-size: 1.15rem;
    font-weight: 500;
}

.alert-panel li::before {
    content: "🛡️ ";
    margin-right: 0.7rem;
}

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

.feature-box {
    background: linear-gradient(135deg, #1e1e3f 0%, #2d2d5f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.feature-box h3 {
    color: #a5b4fc;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-box p {
    color: #e0e7ff;
    font-size: 1.05rem;
    line-height: 1.7;
}

.game-wrapper {
    background: #1a1a2e;
    padding: 2.5rem;
    border-radius: 25px;
    margin: 4rem 0;
    border: 2px solid #667eea;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-wrapper h2 {
    text-align: center;
    color: #a5b4fc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.game-embed {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.text-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #2d2d5f 100%);
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.text-section h2 {
    color: #a5b4fc;
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    color: #e0e7ff;
    line-height: 1.8;
}

.text-section ul {
    margin: 1rem 0 1rem 2rem;
}

.text-section li {
    margin: 0.5rem 0;
    color: #e0e7ff;
}

.site-footer {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: opacity 0.3s;
}

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

.footer-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

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

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

.modal-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.6);
}

.modal-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modal-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1.1rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

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

.confirm-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.decline-btn {
    background: #ef4444;
    color: white;
}

.decline-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav ul {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea, #764ba2);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav ul.active {
        left: 0;
    }
    
    .main-nav li {
        padding: 1.2rem 0;
    }
    
    .banner-section h1 {
        font-size: 2.2rem;
    }
    
    .banner-section p {
        font-size: 1.05rem;
    }
    
    .game-embed {
        height: 480px;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
    }
}
