/* Sythoryn.xyz - Vibrant Gradient Theme */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Vollkorn:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient-start: #667eea;
    --gradient-end: #f093fb;
    --deep-purple: #1a1a2e;
    --medium-purple: #16213e;
    --soft-pink: #f8a5c2;
    --pearl: #f1f2f6;
    --text-light: #ffffff;
    --text-muted: #a4b0be;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--deep-purple);
    color: var(--text-light);
    line-height: 1.7;
}

/* Vibrant Header */
.vibe-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(240, 147, 251, 0.95));
    backdrop-filter: blur(10px);
    z-index: 9000;
}

.header-box {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-badge {
    width: 44px;
    height: 44px;
    background: var(--deep-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Vollkorn', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--soft-pink);
}

.brand-word {
    font-family: 'Vollkorn', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-bar {
    display: flex;
    gap: 2rem;
}

.nav-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-bar a:hover,
.nav-bar a.now {
    color: var(--text-light);
}

/* Mobile Menu */
.menu-icon {
    display: none;
    background: var(--deep-purple);
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--soft-pink);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.mobile-nav.show {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main */
main {
    padding-top: 76px;
}

/* Hero */
.gradient-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(160deg, var(--deep-purple) 0%, var(--medium-purple) 50%, #1e1e3f 100%);
    position: relative;
}

.gradient-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-box {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.hero-box h1 {
    font-family: 'Vollkorn', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-box .tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight Boxes */
.highlight-boxes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.h-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 190px;
    backdrop-filter: blur(5px);
}

.h-box .emoji {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.h-box h3 {
    font-family: 'Vollkorn', serif;
    font-size: 0.95rem;
    color: var(--soft-pink);
    margin-bottom: 0.3rem;
}

.h-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Game Area */
.game-area {
    padding: 5rem 2rem;
    background: var(--medium-purple);
}

.area-heading {
    font-family: 'Vollkorn', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.game-frame {
    max-width: 1340px;
    margin: 0 auto;
    background: var(--deep-purple);
    border: 2px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.game-display {
    width: 100%;
    height: 570px;
    border: none;
    border-radius: 14px;
    background: #000;
}

/* Info Grid */
.info-grid {
    padding: 5rem 2rem;
    background: var(--deep-purple);
}

.grid-items {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-item {
    background: linear-gradient(160deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 18px;
    padding: 2rem;
}

.grid-item h3 {
    font-family: 'Vollkorn', serif;
    font-size: 1.3rem;
    color: var(--soft-pink);
    margin-bottom: 1rem;
}

.grid-item p {
    color: var(--text-muted);
    line-height: 1.85;
}

/* Footer */
.vibe-footer {
    background: var(--deep-purple);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2.5rem 2rem;
}

.footer-box {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.footer-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.resource-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.resource-row a {
    color: var(--gradient-start);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resource-row a:hover {
    color: var(--soft-pink);
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.97);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.age-gate.passed {
    display: none;
}

.gate-box {
    background: linear-gradient(160deg, var(--medium-purple), var(--deep-purple));
    border: 2px solid var(--soft-pink);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    max-width: 430px;
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.2);
}

.gate-box .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gate-box h2 {
    font-family: 'Vollkorn', serif;
    font-size: 1.7rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.gate-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-gate {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Quicksand', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-no {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.btn-no:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Page Header */
.page-head {
    padding: 9rem 2rem 3.5rem;
    text-align: center;
    background: linear-gradient(160deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
}

.page-head h1 {
    font-family: 'Vollkorn', serif;
    font-size: 2.6rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.page-head p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Content Body */
.content-body {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-body h2 {
    font-family: 'Vollkorn', serif;
    font-size: 1.5rem;
    color: var(--soft-pink);
    margin: 2.2rem 0 1rem;
}

.content-body p, .content-body li {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.content-body ul {
    list-style: none;
    padding-left: 1.3rem;
}

.content-body ul li::before {
    content: '✦';
    color: var(--gradient-start);
    margin-right: 0.7rem;
}

/* Responsive */
@media (max-width: 960px) {
    .nav-bar {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }
    
    .grid-items {
        grid-template-columns: 1fr;
    }
    
    .hero-box h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .highlight-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .h-box {
        width: 100%;
        max-width: 270px;
    }
    
    .game-display {
        height: 390px;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
    
    .resource-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .page-head h1 {
        font-size: 2rem;
    }
}
