:root {
    --navy: #1a2744;
    --gold: #d4a843;
    --gold-light: #f5e6c3;
    --cream: #faf8f4;
    --red: #c4453a;
    --text: #2d3142;
    --text-muted: #5c6378;
}

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

body {
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text);
    min-height: 100vh;
}

.hero {
    background: var(--navy);
    color: white;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 67, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 69, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.host-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.host-cta:hover {
    background: #c49a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 168, 67, 0.4);
}

.host-cta svg {
    width: 20px;
    height: 20px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 1.15rem;
    opacity: 1;
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.75;
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.footer-disclaimer {
    text-align: center;
    padding: 2rem 1.5rem 0;
    color: var(--text-muted);
}

.deadline-box {
    background: rgba(196, 69, 58, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.deadline-box svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.deadline-boxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.countdown {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 10vw, 4rem);
    color: var(--gold);
    margin: 1rem 0;
    letter-spacing: 0.02em;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

#map {
    height: 300px;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(26, 39, 68, 0.08);
    border: 1px solid rgba(26, 39, 68, 0.06);
}

.custom-marker {
    background: var(--navy);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
    font-family: 'Source Sans 3', sans-serif;
}

.leaflet-popup-content {
    margin: 0.75rem 1rem;
}

.popup-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.popup-hours {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.locations-grid {
    display: grid;
    gap: 1rem;
}

.location-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(26, 39, 68, 0.08);
    border: 1px solid rgba(26, 39, 68, 0.06);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    transition: all 0.2s ease;
    animation: fadeIn 0.4s ease backwards;
}

.location-card:nth-child(1) { animation-delay: 0.05s; }
.location-card:nth-child(2) { animation-delay: 0.1s; }
.location-card:nth-child(3) { animation-delay: 0.15s; }
.location-card:nth-child(4) { animation-delay: 0.2s; }
.location-card:nth-child(5) { animation-delay: 0.25s; }
.location-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card:hover {
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.12);
    transform: translateY(-2px);
}

.location-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.location-address {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.location-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.location-hours svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-text {
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.2s;
}

.map-link:hover {
    color: var(--gold);
}

.map-link svg {
    width: 14px;
    height: 14px;
}

.location-card.event-card {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, white 0%, var(--gold-light) 100%);
}

.event-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-section {
    background: var(--navy);
    color: white;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
}

.info-grid {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.info-card p {
    opacity: 1;
    line-height: 1.6;
}

.info-card ul {
    margin: 0.75rem 0 0 1.25rem;
    opacity: 1;
    line-height: 1.8;
}

.info-card li {
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.loading-spinner {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.loading-spinner::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--gold-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.75rem;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hq-callout {
    background: var(--navy);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.hq-callout h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hq-callout .hq-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hq-callout .hq-address {
    margin-bottom: 0.25rem;
}

.hq-callout .hq-hours {
    margin-bottom: 1rem;
}

.hq-callout .hq-description {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.hq-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.hq-btn:hover {
    background: #c49a3a;
    transform: translateY(-1px);
}

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    .location-card {
        grid-template-columns: 1fr;
    }
    
    .location-type {
        justify-self: start;
        order: -1;
    }

    .stats {
        gap: 0.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}
