/* SyrenForge Design System */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-deep: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --accent: #c93a6e;
    --accent-glow: #e84d80;
    --accent-soft: rgba(201, 58, 110, 0.15);
    --accent-gradient: linear-gradient(135deg, #e84d80, #a855f7);
    --text-primary: #f0eef5;
    --text-secondary: #8a8699;
    --text-muted: #5a566b;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(201,58,110,0.25);
    --success: #34d399;
    --warning: #fbbf24;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Ambient Glow */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.glow-orb.one {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,58,110,0.12), transparent 70%);
    top: -200px; right: -150px;
}
.glow-orb.two {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(100,50,180,0.10), transparent 70%);
    bottom: 20%; left: -200px;
}
.glow-orb.three {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,58,110,0.08), transparent 70%);
    bottom: -100px; right: 10%;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
nav {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}
.nav-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 30px rgba(201,58,110,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--border-hover);
    background: var(--accent-soft);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 8px;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.2s;
}
.card:hover {
    border-color: var(--border-hover);
}
.card-clickable:hover {
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    margin-bottom: 48px;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}
.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-accent {
    background: var(--accent-soft);
    color: var(--accent-glow);
}
.badge-purple {
    background: rgba(168,85,247,0.15);
    color: #c084fc;
}
.badge-gold {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), rgba(201,58,110,0.15), var(--border), transparent);
    margin: 20px 0;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 60px;
}
footer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
footer .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,15,0.97);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}
.age-gate-overlay.hidden {
    display: none;
}
.age-gate-box {
    text-align: center;
    max-width: 440px;
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.age-gate-box .age-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}
.age-gate-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.age-gate-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 300;
}
.age-gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.age-gate-buttons .btn {
    min-width: 140px;
    justify-content: center;
}
.age-gate-deny {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}
.age-gate-deny:hover {
    border-color: var(--text-muted);
}

/* Utility */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; }
.pt-6 { padding-top: 48px; }
.pb-6 { padding-bottom: 48px; }
.gap-2 { gap: 16px; }

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 0.78rem;
    }
    .container {
        padding: 0 16px;
    }
}
