@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap');

:root {
    --pink: #FF1EB2;
    --purple: #9D00FF;
    --cyan: #00FFEA;
    --dark: #050508;
    --card: rgba(12, 12, 20, 0.85);
    --card-border: rgba(255, 255, 255, 0.06);
    --text: #e0e0e6;
    --text-muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(157, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 30, 178, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 255, 234, 0.04) 0%, transparent 50%);
}

/* ── NAV ── */

.seo-nav-left {
    position: fixed;
    top: 16px; left: 16px;
    z-index: 100;
}

.seo-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.nav-logo img { border-radius: 6px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-login-btn {
    padding: 8px 18px !important;
    background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.3px;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 16px rgba(157, 0, 255, 0.3);
}

.nav-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(157, 0, 255, 0.45) !important;
}

/* ── LANG SWITCHER ── */

.lang-switcher { position: relative; z-index: 200; }
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(12,12,20,0.8);
    border: 1px solid var(--card-border);
    color: #aaa;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    backdrop-filter: blur(12px);
    transition: all 0.2s;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.15); color: #fff; }
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: rgba(12,12,20,0.95);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    backdrop-filter: blur(12px);
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-opt {
    display: block;
    padding: 8px 16px;
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s;
}
.lang-opt:hover { background: rgba(255,255,255,0.05); color: white; }

/* ── PAGE CONTAINER ── */

.seo-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

/* ── BREADCRUMBS ── */

.seo-breadcrumbs {
    margin-bottom: 32px;
}

.seo-breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.seo-breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.seo-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.seo-breadcrumbs a:hover { color: var(--cyan); }

.bc-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.2);
}

.seo-breadcrumbs li:last-child span:not(.bc-sep) {
    color: var(--text);
}

/* ── HERO ── */

.seo-hero {
    text-align: center;
    padding: 40px 0 48px;
}

.seo-hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, var(--pink) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── STATS ── */

.stats-section {
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.stats-grid-sm {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto 16px;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.3s;
}

.stat-card:hover {
    border-color: rgba(157, 0, 255, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-event {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 10px;
}

.next-event strong { color: var(--cyan); }

/* ── GENRES ── */

.genres-section, .types-section, .nearby-section, .faq-section {
    margin-bottom: 48px;
}

.genres-section h2, .types-section h2, .nearby-section h2, .faq-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.genre-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    text-align: center;
}

.genre-card:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 30, 178, 0.15);
    color: white;
}

.genre-card.has-events {
    border-color: rgba(0, 255, 234, 0.15);
}

.genre-active-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

/* ── LOCATION TYPES ── */

.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.type-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.type-icon { font-size: 16px; }

/* ── CTA ── */

.seo-cta {
    position: relative;
    text-align: center;
    padding: 56px 32px;
    margin-bottom: 48px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -40%; left: 30%;
    width: 40%; height: 200%;
    background: radial-gradient(ellipse, rgba(157, 0, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.seo-cta h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    color: white;
}

.seo-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    position: relative;
    box-shadow: 0 4px 20px rgba(157, 0, 255, 0.35);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(157, 0, 255, 0.55);
}

/* ── FAQ ── */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: rgba(157, 0, 255, 0.25);
}

.faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: white;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
    content: '+';
    float: right;
    font-size: 18px;
    color: var(--pink);
    transition: transform 0.2s;
}

.faq-item[open] summary::before {
    content: '−';
}

.faq-item p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── NEARBY / CITY GRID ── */

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.nearby-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
}

.nearby-card:hover {
    border-color: rgba(0, 255, 234, 0.2);
    transform: translateY(-2px);
}

.nearby-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.nearby-region {
    font-size: 12px;
    color: var(--text-muted);
}

.nearby-arrow {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--text-muted);
    font-size: 18px;
    transition: color 0.2s, transform 0.2s;
}

.nearby-card:hover .nearby-arrow {
    color: var(--cyan);
    transform: translateX(3px);
}

/* ── CITY INDEX GRID ── */

.city-grid-section {
    margin-bottom: 48px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.city-card {
    text-decoration: none;
    display: block;
}

.city-card-inner {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s;
}

.city-card:hover .city-card-inner {
    border-color: rgba(255, 30, 178, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(157, 0, 255, 0.12);
}

.city-card-name {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.city-card-region {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.city-card-stats {
    margin: 14px 0 12px;
}

.stat-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 234, 0.08);
    border: 1px solid rgba(0, 255, 234, 0.15);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
}

.city-card-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.genre-tag {
    padding: 3px 10px;
    background: rgba(157, 0, 255, 0.1);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.city-card-arrow {
    position: absolute;
    top: 28px; right: 24px;
    font-size: 20px;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}

.city-card:hover .city-card-arrow {
    color: var(--pink);
    transform: translateX(4px);
}

/* ── FOOTER ── */

.seo-footer {
    background: rgba(5, 5, 8, 0.95);
    border-top: 1px solid var(--card-border);
    padding: 48px 24px 24px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand img { border-radius: 8px; }

.footer-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-cols {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-all {
    margin-top: 6px;
    color: var(--cyan) !important;
    font-weight: 500;
}

.footer-bottom {
    max-width: 960px;
    margin: 32px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    .seo-page {
        padding: 72px 16px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-grid {
        grid-template-columns: 1fr;
    }

    .nearby-grid {
        grid-template-columns: 1fr 1fr;
    }

    .genre-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-cols {
        gap: 32px;
    }

    .seo-nav {
        padding: 12px 16px;
    }

    .nav-links a:not(.nav-login-btn) {
        display: none;
    }

    .seo-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .genre-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-hero h1 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 26px;
    }
}
