@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Raleway:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mystic-purple: #2e1065;
    --deep-blue: #1e40af;
    --silver: #e0e7ff;
    --light-purple: #8b5cf6;
    --dark-bg: #1a0b3b;
}

body {
    font-family: 'Raleway', sans-serif;
    background: radial-gradient(circle at top, #2e1065 0%, #1a0b3b 50%, #0a0520 100%);
    color: var(--silver);
    line-height: 1.7;
    min-height: 100vh;
    background-attachment: fixed;
}

.top-bar {
    background: rgba(26, 11, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--light-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.3);
}

.brand {
    font-family: 'Philosopher', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-purple);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.navigation a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.navigation a:hover {
    color: var(--light-purple);
    background: rgba(139, 92, 246, 0.1);
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-purple);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navigation a:hover::after {
    width: 80%;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: var(--light-purple);
    transition: 0.3s;
    border-radius: 3px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
}

.hero-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
    border-radius: 25px;
    margin-bottom: 4rem;
    border: 3px solid var(--light-purple);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-section h1 {
    font-family: 'Philosopher', sans-serif;
    font-size: 4rem;
    color: var(--light-purple);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    position: relative;
    z-index: 1;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--light-purple);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
    border-color: #a78bfa;
}

.info-card h2 {
    font-family: 'Philosopher', sans-serif;
    color: var(--light-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Philosopher', sans-serif;
    color: #a78bfa;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.info-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.notice-panel {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid var(--light-purple);
}

.notice-panel h3 {
    font-family: 'Philosopher', sans-serif;
    color: var(--light-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-panel ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.notice-panel li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--light-purple);
    padding-left: 1.5rem;
}

.game-section {
    background: rgba(10, 5, 32, 0.8);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 3px solid var(--light-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.game-section h2 {
    font-family: 'Philosopher', sans-serif;
    text-align: center;
    color: var(--light-purple);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.game-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
}

.game-container iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.full-width-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--light-purple);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.full-width-card h2 {
    font-family: 'Philosopher', sans-serif;
    color: var(--light-purple);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.full-width-card h3 {
    font-family: 'Philosopher', sans-serif;
    color: #a78bfa;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.full-width-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.site-footer {
    background: rgba(26, 11, 59, 0.95);
    padding: 4rem 3rem;
    margin-top: 5rem;
    border-top: 3px solid var(--light-purple);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Philosopher', sans-serif;
    color: var(--light-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid var(--light-purple);
    font-weight: 600;
}

.footer-links a:hover {
    background: var(--light-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.footer-nav {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-nav a {
    color: var(--silver);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--light-purple);
}

/* Age Verification Modal */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    backdrop-filter: blur(20px);
}

.verify-modal.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.verify-box {
    background: linear-gradient(135deg, var(--mystic-purple) 0%, var(--deep-blue) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid var(--light-purple);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.6);
    animation: mysticalEntry 0.6s ease-out;
}

@keyframes mysticalEntry {
    from {
        transform: scale(0.5) rotateY(180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

.verify-box h2 {
    font-family: 'Philosopher', sans-serif;
    color: var(--light-purple);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 1);
}

.verify-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.verify-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--light-purple);
    color: white;
}

.btn-accept:hover {
    background: #a78bfa;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
}

.btn-reject {
    background: #dc2626;
    color: white;
}

.btn-reject:hover {
    background: #b91c1c;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .navigation {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(26, 11, 59, 0.98);
        width: 100%;
        padding: 2rem 0;
        transition: 0.3s;
        border-bottom: 2px solid var(--light-purple);
        gap: 0;
    }

    .navigation.active {
        left: 0;
    }

    .navigation a {
        display: block;
        margin: 0.5rem 2rem;
    }

    .container {
        padding: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-box h2 {
        font-size: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .verify-buttons button {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .top-bar {
        padding: 1rem 1.5rem;
    }

    .brand {
        font-size: 1.8rem;
    }
}
