/* Luminshade.xyz - Soft Glow Theme */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Nunito:wght@200;300;400;600;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --soft-violet: #9b72cf;
    --gentle-cyan: #6dd5ed;
    --warm-coral: #f8a5c2;
    --cream-white: #fef9f3;
    --shadow-plum: #2d1f3d;
    --glow-mint: #7efff5;
    --blush-pink: #ffc8dd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--shadow-plum) 0%, #1a1025 100%);
    color: var(--cream-white);
    line-height: 1.75;
    min-height: 100vh;
}

/* Soft glow overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(155,114,207,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(109,213,237,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(248,165,194,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45,31,61,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(155,114,207,0.15);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--soft-violet), var(--gentle-cyan), var(--warm-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Links */
.nav-links {
    display: flex;
    gap: 0.75rem;
}

.nav-links a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream-white);
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(155,114,207,0.3);
    color: var(--glow-mint);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
}

.burger-line {
    width: 26px;
    height: 3px;
    background: var(--gentle-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26,16,37,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay a {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-overlay a:hover {
    color: var(--glow-mint);
}

/* Welcome Section */
.welcome-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 60px;
}

.welcome-wrap {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.welcome-text h1 .highlight {
    background: linear-gradient(90deg, var(--soft-violet), var(--warm-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    font-size: 1.15rem;
    color: rgba(254,249,243,0.85);
    margin-bottom: 2rem;
}

/* Glow Cards */
.glow-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.glow-card {
    background: rgba(155,114,207,0.1);
    border: 1px solid rgba(155,114,207,0.25);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.glow-card:hover {
    background: rgba(155,114,207,0.2);
    box-shadow: 0 10px 40px rgba(155,114,207,0.2);
    transform: translateY(-3px);
}

.glow-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--glow-mint);
    margin-bottom: 0.5rem;
}

.glow-card p {
    font-size: 0.95rem;
    color: rgba(254,249,243,0.8);
}

/* Game Display */
.game-display {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(155,114,207,0.08) 50%, transparent 100%);
}

.game-display-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.game-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--blush-pink);
}

.game-viewport {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    background: rgba(45,31,61,0.8);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(155,114,207,0.3);
    box-shadow: 
        0 0 40px rgba(155,114,207,0.2),
        0 0 80px rgba(109,213,237,0.1);
}

.game-viewport iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Area */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-area h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gentle-cyan);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(109,213,237,0.3);
}

.content-area p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: rgba(254,249,243,0.9);
}

.content-area ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-area li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: rgba(254,249,243,0.85);
}

.content-area li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--warm-coral);
}

/* Feature Tiles */
.feature-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.tile {
    background: linear-gradient(145deg, rgba(109,213,237,0.1), rgba(155,114,207,0.1));
    border: 1px solid rgba(109,213,237,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(109,213,237,0.15);
}

.tile h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--soft-violet);
    margin-bottom: 1rem;
}

/* Page Banner */
.page-banner {
    padding-top: 120px;
    padding-bottom: 2rem;
    text-align: center;
}

.page-banner h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gentle-cyan), var(--soft-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Area */
.footer-area {
    background: linear-gradient(180deg, rgba(45,31,61,0.5) 0%, rgba(26,16,37,1) 100%);
    border-top: 1px solid rgba(155,114,207,0.2);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-coral);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(254,249,243,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--glow-mint);
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(155,114,207,0.15);
    font-size: 0.85rem;
    color: rgba(254,249,243,0.5);
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(26,16,37,0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-popup.gone {
    display: none;
}

.age-popup-card {
    background: linear-gradient(145deg, rgba(155,114,207,0.2), rgba(45,31,61,0.9));
    border: 2px solid var(--soft-violet);
    border-radius: 24px;
    padding: 3rem;
    max-width: 460px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 0 60px rgba(155,114,207,0.3);
}

.age-popup-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--glow-mint);
}

.age-popup-card p {
    margin-bottom: 2rem;
    color: rgba(254,249,243,0.9);
    font-size: 1rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.accept {
    background: linear-gradient(90deg, var(--soft-violet), var(--gentle-cyan));
    color: var(--shadow-plum);
}

.age-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(155,114,207,0.4);
}

.age-btn.decline {
    background: transparent;
    border: 2px solid var(--warm-coral);
    color: var(--warm-coral);
}

.age-btn.decline:hover {
    background: var(--warm-coral);
    color: var(--shadow-plum);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .welcome-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-text h1 {
        font-size: 2rem;
    }
    
    .glow-cards {
        order: 2;
    }
    
    .welcome-section {
        padding-top: 100px;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-area {
        padding: 2rem 1rem;
    }
}
