:root {
    --bg-dark: #000000;
    --bg-charcoal: #0a0a0a;
    --border-color: #1a1a1a;
    --text-main: #ffffff;
    --text-dim: #737373;
    --radius: 12px;
}

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

body {
    /* Updated to the cool font from your uploaded file */
    font-family: 'Parkinsans', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

header {
    background: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    position: sticky; top: 0; z-index: 100;
}

.header-content {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

#searchBar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
    color: white;
    width: 350px;
    font-family: 'Inter', sans-serif;
}

.quote-container {
    text-align: center; padding: 3rem 1rem;
}

#quoteText { font-style: italic; font-size: 1.1rem; color: var(--text-main); margin-bottom: 8px; display: block; }
#quoteAuthor { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; }

.stats-bar {
    text-align: center; font-size: 0.75rem; color: var(--text-dim); padding-bottom: 1rem;
}

main { max-width: 1400px; margin: 0 auto; padding: 1rem; }

#container {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem;
}

.zone-item {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.zone-item:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.zone-item img { width: 100%; height: 160px; object-fit: cover; }
.zone-info { padding: 1rem; text-align: center; font-weight: 500; font-size: 0.95rem; }

#zoneViewer {
    position: fixed; inset: 0; background: #000; z-index: 1000; display: none; flex-direction: column;
}

.zone-header { background: #0a0a0a; padding: 1rem; border-bottom: 1px solid #1a1a1a; display: flex; justify-content: space-between; }
#zoneFrame { flex: 1; border: none; background: #fff; }

#popupOverlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; z-index: 2000;
}

.popup { background: #0a0a0a; border: 1px solid #1a1a1a; padding: 2rem; width: 450px; border-radius: var(--radius); }
footer { padding: 4rem; text-align: center; color: var(--text-dim); font-size: 0.8rem; border-top: 1px solid var(--border-color); margin-top: 2rem; }
