@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600;700&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
    color: #e0e6ed;
    line-height: 1.6;
    min-height: 100vh;
}

.header {
    background: rgba(10, 14, 39, 0.95);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    border-bottom: 2px solid #8a2be2;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8), 0 0 40px rgba(138, 43, 226, 0.4);
    letter-spacing: 2px;
}

.logo:before {
    content: '⬢ ';
    color: #8a2be2;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid #8a2be2;
    color: #8a2be2;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: #8a2be2;
    color: #fff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #e0e6ed;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #da70d6);
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

.main-nav a:hover {
    color: #da70d6;
}

.hero-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.1) 0%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
    line-height: 1.2;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #da70d6;
    text-shadow: 0 0 20px rgba(218, 112, 214, 0.4);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b8c5d6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.content-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.notice-card {
    background: rgba(26, 31, 58, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notice-card:hover {
    border-color: #8a2be2;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #da70d6;
}

.notice-card p {
    font-size: 1.1rem;
    color: #b8c5d6;
}

.game-container {
    background: rgba(26, 31, 58, 0.9);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1200px;
    border: 2px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.info-section {
    background: rgba(26, 31, 58, 0.6);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid #8a2be2;
}

.info-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #da70d6;
}

.info-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #b8c5d6;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.info-section li:before {
    content: '▸ ';
    color: #8a2be2;
    font-weight: bold;
    margin-right: 0.5rem;
}

.footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid #8a2be2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #da70d6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #da70d6;
}

.footer p {
    color: #7a8a9e;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-modal {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #8a2be2;
    box-shadow: 0 30px 80px rgba(138, 43, 226, 0.5);
}

.age-verification-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.age-verification-modal p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b8c5d6;
}

.age-verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-verification-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-verification-buttons .yes-btn {
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    color: #fff;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.age-verification-buttons .yes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.age-verification-buttons .no-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #8a2be2;
}

.age-verification-buttons .no-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #8a2be2;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .notice-cards {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .age-verification-modal {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
