@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cosmic-purple: #6B2D8F;
    --nebula-pink: #C74DA8;
    --star-blue: #4A5FD9;
    --deep-space: #1a0b2e;
    --galaxy-purple: #3d1f4d;
    --stardust: #E8D5FF;
    --void: #0a0416;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--void) 0%, var(--deep-space) 50%, var(--galaxy-purple) 100%);
    background-attachment: fixed;
    color: var(--stardust);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 90%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Header */
header {
    background: linear-gradient(90deg, var(--cosmic-purple) 0%, var(--star-blue) 100%);
    padding: 1.2rem 3rem;
    box-shadow: 0 4px 30px rgba(107, 45, 143, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--nebula-pink);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(200, 77, 168, 0.8);
}

.logo-symbol {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--nebula-pink) 0%, var(--star-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(199, 77, 168, 0.6);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 8px;
}

nav a:hover {
    border-color: var(--nebula-pink);
    background: rgba(199, 77, 168, 0.2);
    box-shadow: 0 0 15px rgba(199, 77, 168, 0.5);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Content Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.hero-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(107, 45, 143, 0.3) 0%, rgba(74, 95, 217, 0.3) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(199, 77, 168, 0.3);
    box-shadow: 0 10px 50px rgba(107, 45, 143, 0.4);
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--stardust) 0%, var(--nebula-pink) 50%, var(--star-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(199, 77, 168, 0.5);
}

.hero-section p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Content Panels */
.content-panel {
    background: rgba(26, 11, 46, 0.8);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(107, 45, 143, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.content-panel h2 {
    color: var(--nebula-pink);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(199, 77, 168, 0.6);
}

.content-panel h3 {
    color: var(--star-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Notice Grid */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.notice-item {
    background: linear-gradient(135deg, rgba(107, 45, 143, 0.4) 0%, rgba(74, 95, 217, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--cosmic-purple);
    transition: all 0.3s ease;
    text-align: center;
}

.notice-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 77, 168, 0.4);
    border-color: var(--nebula-pink);
}

.notice-item h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--stardust);
}

.notice-item p {
    margin: 0;
    font-size: 1.05rem;
}

/* Game Box */
.game-box {
    background: rgba(26, 11, 46, 0.9);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 3px solid var(--cosmic-purple);
    box-shadow: 0 10px 50px rgba(107, 45, 143, 0.6);
    text-align: center;
}

.game-box h2 {
    color: var(--nebula-pink);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-box iframe {
    width: 100%;
    max-width: 1100px;
    height: 750px;
    border: 3px solid var(--star-blue);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(74, 95, 217, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--void) 0%, var(--deep-space) 100%);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--cosmic-purple);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--nebula-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--star-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--star-blue);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    background: var(--star-blue);
    color: white;
    box-shadow: 0 0 20px rgba(74, 95, 217, 0.6);
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 4, 22, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--galaxy-purple) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    border: 3px solid var(--cosmic-purple);
    box-shadow: 0 20px 80px rgba(107, 45, 143, 0.8);
}

.age-gate-content h2 {
    color: var(--nebula-pink);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.age-gate-content p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.age-buttons button {
    flex: 1;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-accept {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--star-blue) 100%);
    color: white;
    border: 2px solid var(--nebula-pink);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(199, 77, 168, 0.6);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    border: 2px solid #666;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Lists */
ul {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

li {
    margin: 0.8rem 0;
    font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--star-blue) 100%);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 9999;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        padding: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .content-panel {
        padding: 2rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .game-box iframe {
        height: 550px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
