@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --void-dark: #0a0612;
    --void-purple: #1a0a2e;
    --void-accent: #7b2cbf;
    --void-glow: #c77dff;
    --void-light: #e0aaff;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--void-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.void-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(199, 125, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 10, 46, 0.8) 0%, var(--void-dark) 70%);
    z-index: -1;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 44, 191, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--void-glow), var(--void-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--void-glow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--void-glow);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--void-glow);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--void-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(199, 125, 255, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--void-accent), var(--void-glow));
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(123, 44, 191, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(199, 125, 255, 0.5);
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.8), rgba(10, 6, 18, 0.9));
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: var(--void-glow);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.2);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--void-light);
}

.notice-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--void-light);
}

.game-container {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.6), rgba(10, 6, 18, 0.8));
    border: 1px solid rgba(123, 44, 191, 0.4);
    border-radius: 25px;
    padding: 1.5rem;
    overflow: hidden;
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

/* Info Section */
.info-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: rgba(26, 10, 46, 0.5);
    border-left: 4px solid var(--void-accent);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
}

.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--void-glow);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-secondary);
}

/* Page Content */
.page-content {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    color: var(--void-light);
    text-align: center;
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--void-glow);
    margin: 2.5rem 0 1rem;
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.page-content ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: rgba(10, 6, 18, 0.98);
    border-top: 1px solid rgba(123, 44, 191, 0.3);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.responsible-links a {
    color: var(--void-glow);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: var(--void-light);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 6, 18, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--void-purple), var(--void-dark));
    border: 2px solid var(--void-accent);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--void-light);
    margin-bottom: 1rem;
}

.age-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--void-accent), var(--void-glow));
    color: white;
}

.age-btn.yes:hover {
    box-shadow: 0 5px 30px rgba(123, 44, 191, 0.5);
    transform: translateY(-2px);
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--void-accent);
    color: var(--void-glow);
}

.age-btn.no:hover {
    background: rgba(123, 44, 191, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 6, 18, 0.98);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(123, 44, 191, 0.3);
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 450px;
    }

    .site-header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}
