@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f051d 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

.site-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: rgba(16, 6, 30, 0.95);
    border-right: 2px solid #6b2d9e;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.logo-area {
    padding: 0 30px 40px;
    border-bottom: 1px solid #6b2d9e;
    margin-bottom: 30px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #b565ff;
    text-shadow: 0 0 20px rgba(181, 101, 255, 0.5);
    text-decoration: none;
    display: block;
}

.logo-subtitle {
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 5px;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    padding: 0 20px;
}

.nav-menu li {
    margin-bottom: 10px;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #c0c0c0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(181, 101, 255, 0.15);
    color: #b565ff;
    transform: translateX(5px);
}

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    background: #6b2d9e;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 40px;
}

.hero-section {
    background: rgba(107, 45, 158, 0.1);
    border: 2px solid #6b2d9e;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 700;
    color: #b565ff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(181, 101, 255, 0.6);
}

.hero-section p {
    font-size: 20px;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    background: rgba(16, 6, 30, 0.6);
    border: 1px solid #6b2d9e;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 36px;
    color: #b565ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #9b6bc7;
    margin: 25px 0 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #d0d0d0;
}

.notice-box {
    background: rgba(181, 101, 255, 0.15);
    border-left: 4px solid #b565ff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.notice-box strong {
    color: #b565ff;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.game-container {
    background: #000;
    border: 3px solid #6b2d9e;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 0 40px rgba(181, 101, 255, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.footer {
    background: rgba(16, 6, 30, 0.95);
    border-top: 2px solid #6b2d9e;
    padding: 40px;
    margin-top: 60px;
}

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

.footer h3 {
    color: #b565ff;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9e9e9e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b565ff;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification-box {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1250 100%);
    border: 3px solid #b565ff;
    border-radius: 16px;
    padding: 50px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 60px rgba(181, 101, 255, 0.5);
}

.age-verification-box h2 {
    color: #b565ff;
    font-size: 32px;
    margin-bottom: 20px;
}

.age-verification-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.age-btn-yes {
    background: #6b2d9e;
    color: #fff;
}

.age-btn-yes:hover {
    background: #b565ff;
    transform: scale(1.05);
}

.age-btn-no {
    background: #3d3d3d;
    color: #fff;
}

.age-btn-no:hover {
    background: #555;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 20px 20px;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .age-verification-box {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-verification-box h2 {
        font-size: 24px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
