:root {
    --primary:       #7C3AED;   /* violeta gaming */
    --primary-light: #A78BFA;
    --accent:        #06B6D4;   /* cyan neón */
    --accent2:       #F59E0B;   /* ámbar */
    --bg-dark:       #0d0d1a;
    --bg-mid:        #141428;
    --card-bg:       rgba(20, 20, 40, 0.85);
    --glass-border:  rgba(124, 58, 237, 0.35);
    --text-white:    #f0f0ff;
    --text-gray:     #a0a0c0;
    --glow-purple:   0 0 18px rgba(124, 58, 237, 0.6);
    --glow-cyan:     0 0 18px rgba(6, 182, 212, 0.6);
    --glow-amber:    0 0 18px rgba(245, 158, 11, 0.5);

    /* Elements del mapa */
    --color-carpa:   #60A5FA;   /* blau carpas */
    --color-tree:    #4ADE80;   /* verd arbres */
    --color-photo:   #92400E;   /* marró photocalls */
    --color-dj:      #F59E0B;   /* ambre DJ */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── BACKGROUND ─────────────────────────────────────── */
.bg-fx {
    position: fixed; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, #1a0533 0%, #0d0d1a 60%);
    z-index: -2;
}
.bg-fx::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, #a78bfa55, transparent),
        radial-gradient(1px 1px at 65% 10%, #06b6d455, transparent),
        radial-gradient(2px 2px at 40% 80%, #ffffff33, transparent),
        radial-gradient(1px 1px at 80% 60%, #a78bfa44, transparent);
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.5;
    animation: starsTwinkle 8s ease-in-out infinite alternate;
}
@keyframes starsTwinkle {
    from { opacity: 0.3; }
    to   { opacity: 0.7; }
}

/* Scanlines effect */
.bg-fx::after {
    content: '';
    position: fixed; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
    z-index: 999;
}

/* ─── HEADER ─────────────────────────────────────────── */
header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    position: relative;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: var(--glow-purple);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: var(--glow-purple); }
    50%       { box-shadow: var(--glow-cyan); }
}

.event-badge i { font-size: 0.9rem; }

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.h1-lan {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.h1-party {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.55em;
    color: var(--accent2);
    text-shadow: var(--glow-amber);
    display: block;
    letter-spacing: 4px;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: 0.6rem;
}

/* ─── MAIN CONTAINER ──────────────────────────────────── */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem 5rem;
    width: 100%;
}

/* ─── MAP WRAPPER ─────────────────────────────────────── */
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(124,58,237,0.15), 0 20px 50px rgba(0,0,0,0.6);
    overflow: auto;
}

.map-container {
    position: relative;
    width: 100%;
    min-width: 700px;
}

#base-map {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.markers-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ─── MARKERS ─────────────────────────────────────────── */
.marker {
    position: absolute;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    border: 2px solid rgba(0,0,0,0.4);
}

.marker.type-carpa {
    background: var(--color-carpa);
    box-shadow: 0 0 10px rgba(96,165,250,0.6);
}

.marker.type-dj {
    background: var(--color-dj);
    box-shadow: var(--glow-amber);
    border-radius: 8px;
    font-size: 10px;
    width: 36px; height: 36px;
    animation: djPulse 1.5s ease-in-out infinite;
}

@keyframes djPulse {
    0%, 100% { box-shadow: var(--glow-amber); transform: translate(-50%,-50%) scale(1); }
    50%       { box-shadow: 0 0 28px rgba(245,158,11,0.9); transform: translate(-50%,-50%) scale(1.08); }
}

.marker.type-actividad { background: #FBBF24; box-shadow: 0 0 10px rgba(251,191,36,0.6); }
.marker.type-agua { background: #3B82F6; box-shadow: 0 0 10px rgba(59,130,246,0.6); }
.marker.type-karaoke { background: #EC4899; box-shadow: 0 0 10px rgba(236,72,153,0.6); }
.marker.type-escenario { background: #8B5CF6; box-shadow: 0 0 10px rgba(139,92,246,0.6); }
.marker.type-gaming { background: #10B981; box-shadow: 0 0 10px rgba(16,185,129,0.6); }
.marker.type-lan { background: #F59E0B; box-shadow: 0 0 10px rgba(245,158,11,0.6); }
.marker.type-photocall { background: #EF4444; box-shadow: 0 0 10px rgba(239,68,68,0.6); }

.marker:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #fff !important;
    z-index: 20;
    box-shadow: 0 0 25px #fff !important;
    animation: none !important;
    color: #000 !important;
}

.marker.active {
    background: var(--primary) !important;
    box-shadow: var(--glow-purple) !important;
    color: #fff !important;
    animation: none !important;
}

/* ─── SECTION TITLES ──────────────────────────────────── */
.section-title {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

/* ─── PROGRAMA D'HORARIS (SECTION UNDER MAP) ────────── */
.schedule-section-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 3.5rem;
    padding: 0 10px;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(20, 20, 40, 0.7);
    border: 1px solid var(--glass-border);
    color: var(--text-gray);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.tab-btn:hover {
    color: var(--text-white);
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary-light);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--glow-purple);
}

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

.schedule-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.schedule-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--glow-purple);
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.schedule-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.badge-day {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-day.sabado {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent2);
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.badge-day.domingo {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.5);
}

.badge-time {
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-zone {
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(124, 58, 237, 0.25);
    color: var(--primary-light);
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(167, 139, 250, 0.4);
}

.schedule-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.3;
}

.schedule-author {
    font-size: 0.85rem;
    color: var(--accent2);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.45;
    flex: 1;
}

.schedule-btn-map {
    align-self: flex-start;
    margin-top: 6px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--primary-light);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.schedule-btn-map:hover {
    background: var(--primary);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* ─── LLISTA DE PARADES I ZONES ────────────────────────── */
.stands-list-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 4rem;
    padding: 0 10px;
}

.stands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.stand-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.stand-card:hover {
    transform: translateY(-4px);
    background: rgba(124,58,237,0.18);
    border-color: var(--primary-light);
    box-shadow: var(--glow-purple);
}

.stand-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    color: #000;
}

.stand-number.carpa { background: var(--color-carpa); box-shadow: 0 0 8px rgba(96,165,250,0.5); }
.stand-number.actividad { background: #FBBF24; box-shadow: 0 0 8px rgba(251,191,36,0.5); }
.stand-number.dj    { background: var(--color-dj);    box-shadow: var(--glow-amber); border-radius: 8px; }
.stand-number.agua { background: #3B82F6; box-shadow: 0 0 8px rgba(59,130,246,0.5); }
.stand-number.karaoke { background: #EC4899; box-shadow: 0 0 8px rgba(236,72,153,0.5); }
.stand-number.escenario { background: #8B5CF6; box-shadow: 0 0 8px rgba(139,92,246,0.5); }
.stand-number.gaming { background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.5); }
.stand-number.lan { background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.5); }
.stand-number.photocall { background: #EF4444; box-shadow: 0 0 8px rgba(239,68,68,0.5); }

.stand-info { flex: 1; min-width: 0; }

.stand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stand-type-label {
    font-size: 0.72rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.stand-schedule-tag {
    font-size: 0.74rem;
    color: var(--accent2);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stand-action {
    color: var(--text-gray);
    font-size: 1rem;
    transition: color 0.3s;
}

.stand-card:hover .stand-action { color: var(--primary-light); }

/* ─── INFO OVERLAY ────────────────────────────────────── */
.info-overlay {
    position: fixed;
    bottom: -150px; left: 50%;
    transform: translateX(-50%);
    width: 92%; max-width: 520px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    pointer-events: none;
    max-height: 85vh;
    overflow-y: auto;
}

.info-overlay.active {
    bottom: 24px;
    opacity: 1;
    pointer-events: all;
}

.glass-card {
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--primary);
    padding: 1.8rem;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--glow-purple), 0 20px 50px rgba(0,0,0,0.8);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 14px; right: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover { color: #fff; background: rgba(124,58,237,0.5); }

.overlay-type-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.overlay-type-badge.carpa { background: rgba(96,165,250,0.2); color: var(--color-carpa); border: 1px solid var(--color-carpa); }
.overlay-type-badge.actividad { background: rgba(251,191,36,0.2); color: #FBBF24; border: 1px solid #FBBF24; }
.overlay-type-badge.dj    { background: rgba(245,158,11,0.2);  color: var(--color-dj);    border: 1px solid var(--color-dj); }
.overlay-type-badge.agua      { background: rgba(59,130,246,0.2); color: #3B82F6; border: 1px solid #3B82F6; }
.overlay-type-badge.karaoke   { background: rgba(236,72,153,0.2); color: #EC4899; border: 1px solid #EC4899; }
.overlay-type-badge.escenario { background: rgba(139,92,246,0.2); color: #8B5CF6; border: 1px solid #8B5CF6; }
.overlay-type-badge.gaming    { background: rgba(16,185,129,0.2); color: #10B981; border: 1px solid #10B981; }
.overlay-type-badge.lan       { background: rgba(245,158,11,0.2); color: #F59E0B; border: 1px solid #F59E0B; }
.overlay-type-badge.photocall { background: rgba(239,68,68,0.2);  color: #EF4444; border: 1px solid #EF4444; }

#vendor-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.55rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
    display: block;
}

#vendor-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

/* OVERLAY HORARIS BOX */
.overlay-schedule-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 14px;
}

.sched-pill {
    background: rgba(20, 20, 45, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sched-pill .day-lbl {
    font-weight: 800;
    color: var(--accent2);
    text-transform: uppercase;
    font-size: 0.72rem;
}

#vendor-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* OVERLAY ARTISTS LIST */
.overlay-artists-container {
    text-align: left;
    margin-bottom: 1.2rem;
}

.overlay-artists-title {
    color: var(--accent2);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.artist-card-item {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.artist-card-item .artist-name {
    color: var(--text-white);
}

.artist-card-item a.artist-ig-btn {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.artist-card-item a.artist-ig-btn:hover {
    background: var(--accent);
    color: #000;
}

/* OVERLAY EVENTS LIST */
.overlay-events-container {
    text-align: left;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.overlay-event-card {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
}

.overlay-event-time {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.overlay-event-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
}

.overlay-event-author {
    font-size: 0.8rem;
    color: var(--accent2);
    font-weight: 600;
    margin-bottom: 4px;
}

.overlay-event-desc {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.35;
}

.social-links {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-btn.tiktok    { background: #000; border-color: #ff0050; }
.social-btn.web       { background: rgba(124,58,237,0.4); border-color: var(--primary-light); }
.social-btn.linktree  { background: #43e660; color: #171a1c; }

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.loading-text, .error-text {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-style: italic;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    padding: 2.5rem 1rem;
    background: rgba(0,0,0,0.6);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.org-name {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer p {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ─── DESPLEGABLE ESCENARIO ──────────────────────────── */
.schedule-toggle-btn {
    width: 100%;
    margin-top: 10px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: var(--primary-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: all 0.25s ease;
}

.schedule-toggle-btn:hover {
    background: rgba(124, 58, 237, 0.3);
    border-color: var(--primary-light);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.schedule-toggle-btn i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.schedule-toggle-btn.open i.fa-chevron-down {
    transform: rotate(180deg);
}

.schedule-events-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.schedule-events-collapsible.open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 12px;
}

.day-subgroup-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.day-subgroup-title.sabado {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.day-subgroup-title.domingo {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.schedule-event-subitem {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-light);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left-width: 3px;
    border-left-color: var(--primary-light);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .glass-card { padding: 1.3rem; }
    .map-wrapper { padding: 6px; }
    .schedule-grid { grid-template-columns: 1fr; }
    .stands-grid { grid-template-columns: 1fr; }
}
