/* Glitterith - Glamorous Sparkle Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose-gold: #b76e79;
    --deep-pink: #c71585;
    --champagne: #f7e7ce;
    --gold: #ffd700;
    --pearl-white: #faf0e6;
    --luxury-purple: #4a0e4e;
    --shimmer: #ffb6c1;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--pearl-white);
    line-height: 1.7;
    min-height: 100vh;
}

/* Sparkle Animation */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.sparkle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

/* Sidebar Layout */
.site-wrapper {
    display: flex;
    min-height: 100vh;
}

aside {
    width: 280px;
    background: linear-gradient(180deg, var(--luxury-purple), #2d1b3d);
    border-right: 3px solid var(--rose-gold);
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(183, 110, 121, 0.3);
    z-index: 1000;
}

aside .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px var(--gold);
    letter-spacing: 3px;
}

aside nav ul {
    list-style: none;
}

aside nav li {
    margin: 1.5rem 0;
}

aside nav a {
    color: var(--champagne);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

aside nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--rose-gold);
    color: var(--gold);
    transform: translateX(5px);
}

.mobile-header {
    display: none;
    background: linear-gradient(90deg, var(--luxury-purple), #2d1b3d);
    border-bottom: 3px solid var(--rose-gold);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 0 0 15px var(--gold);
}

.sidebar-toggle {
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    position: relative;
    z-index: 1;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.luxury-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.8), rgba(199, 21, 133, 0.4));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid var(--rose-gold);
    box-shadow: 0 10px 40px rgba(183, 110, 121, 0.4);
    backdrop-filter: blur(10px);
}

.luxury-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--gold);
    font-weight: 900;
}

.luxury-header p {
    font-size: 1.2rem;
    color: var(--champagne);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.elegant-section {
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.6), rgba(45, 27, 61, 0.6));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.elegant-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.elegant-section p {
    color: var(--champagne);
    margin-bottom: 1rem;
}

.glamour-notice {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(183, 110, 121, 0.2));
    border: 3px solid var(--gold);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 15px;
}

.glamour-notice h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.glamour-notice ul {
    list-style: none;
    padding-left: 0;
}

.glamour-notice li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.glamour-notice li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 1.3rem;
}

/* Game Showcase */
.game-showcase {
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.9), rgba(22, 33, 62, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 0 0 25px var(--gold);
    font-weight: 900;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: 4px solid var(--rose-gold);
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 40px rgba(183, 110, 121, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--luxury-purple), #2d1b3d);
    border-top: 3px solid var(--rose-gold);
    padding: 2.5rem;
    text-align: center;
    margin-top: 5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose-gold);
    text-shadow: 0 0 10px var(--rose-gold);
}

footer p {
    color: var(--champagne);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, var(--luxury-purple), var(--deep-pink));
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--gold);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.6);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--gold);
    font-weight: 900;
}

.age-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--champagne);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
}

.age-button.yes {
    background: var(--gold);
    color: var(--luxury-purple);
    box-shadow: 0 5px 20px var(--gold);
}

.age-button.yes:hover {
    background: var(--champagne);
    transform: scale(1.08);
}

.age-button.no {
    background: var(--deep-pink);
    color: var(--pearl-white);
}

.age-button.no:hover {
    background: #8b0051;
    transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
    aside {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    aside.active {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .luxury-header h1 {
        font-size: 2.5rem;
    }

    .luxury-header {
        padding: 3rem 1.5rem;
    }

    .game-frame {
        height: 500px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}

/* Text Pages */
.text-page {
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.7), rgba(45, 27, 61, 0.7));
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 900px;
    border: 3px solid var(--rose-gold);
}

.text-page h1 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 25px var(--gold);
    font-weight: 900;
}

.text-page h2 {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-page p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    color: var(--champagne);
}

.text-page ul {
    margin: 1rem 0 1rem 2rem;
}

.text-page li {
    margin: 0.7rem 0;
    color: var(--champagne);
}
