@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=DM+Sans:wght@400;500;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aurora-1: #8b5cf6;
    --aurora-2: #ec4899;
    --aurora-3: #06b6d4;
    --deep-purple: #1e1b4b;
    --soft-purple: #312e81;
    --light-text: #f5f3ff;
    --muted-text: #c4b5fd;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--soft-purple) 50%, var(--deep-purple) 100%);
    color: var(--light-text);
    line-height: 1.8;
    min-height: 100vh;
}

.shade-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.header-box {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shade-logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.toggle-menu {
    display: none;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

.shade-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.shade-nav a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.shade-nav a:hover {
    color: var(--aurora-2);
}

.page-wrap {
    padding-top: 75px;
}

.aurora-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}

.aurora-hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.aurora-hero .subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.hero-desc {
    max-width: 650px;
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 3rem;
}

.glow-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.glow-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--light-text);
}

.content-block {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.block-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 80px rgba(236, 72, 153, 0.2);
    background: var(--deep-purple);
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), rgba(30, 27, 75, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: var(--aurora-2);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--muted-text);
}

.info-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    border-left: 4px solid var(--aurora-1);
    padding: 2.5rem;
    margin: 2rem 0;
}

.info-box h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: var(--aurora-2);
    margin-bottom: 1.5rem;
}

.info-box p {
    color: var(--muted-text);
    margin-bottom: 1rem;
}

.info-box ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--muted-text);
}

.info-box li {
    margin-bottom: 0.5rem;
}

.shade-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--aurora-1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--aurora-2);
}

.footer-info {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(30, 27, 75, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-box {
    background: linear-gradient(180deg, var(--soft-purple), var(--deep-purple));
    border: 1px solid var(--aurora-1);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
}

.age-box h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.age-box p {
    color: var(--muted-text);
    margin-bottom: 2.5rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    font-family: 'Quicksand', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn.yes {
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
    color: white;
    border: none;
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--muted-text);
    color: var(--muted-text);
}

.age-btn:hover {
    transform: scale(1.05);
}

.vanish {
    display: none !important;
}

.page-top {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.4) 0%, transparent 50%);
}

.page-top h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doc-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.doc-content h2 {
    font-family: 'Quicksand', sans-serif;
    color: var(--aurora-2);
    margin: 2.5rem 0 1rem;
    font-size: 1.4rem;
}

.doc-content p {
    color: var(--muted-text);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.hint-box {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.hint-box strong {
    color: var(--light-text);
}

@media (max-width: 1024px) {
    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .toggle-menu {
        display: block;
    }

    .shade-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 27, 75, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }

    .shade-nav.active {
        display: flex;
    }

    .shade-nav li {
        padding: 1rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }

    .aurora-hero h1 {
        font-size: 2.5rem;
    }

    .aurora-hero .subtitle {
        font-size: 1rem;
    }

    .glow-badges {
        flex-direction: column;
        align-items: center;
    }

    .age-btns {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
