/* ============================================
   RESET & VARIABLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF8C42;
    --bg-dark: #1a1a1a;
    --bg-card: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    width: 100%;
}

/* 🆕 Position fixed UNIQUEMENT sur mobile */
@media (max-width: 768px) {
    body {
        overflow: hidden;
        height: 100vh;
        position: fixed;
    }
}

/* ============================================
   BARRE DE RECHERCHE & FILTRES (BULLES)
============================================ */
.search-header {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 1000;
    pointer-events: none;
}

.search-header > * {
    pointer-events: auto;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.search-input-wrapper i {
    color: #666;
    margin-right: 10px;
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    color: #000;
    font-size: 14px;
    outline: none;
    pointer-events: none;
}

.search-input::placeholder {
    color: #999;
}

/* Filtres horizontaux */
.filters-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    margin-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
}

.filters-row::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 18px;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.filter-btn i {
    font-size: 13px;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 3px 12px rgba(255, 140, 66, 0.3);
}

/* Bouton Plus pour ouvrir le modal */
.more-filters-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
}

.more-filters-btn i {
    font-size: 14px;
    color: #333;
}

.more-filters-btn:active {
    transform: scale(0.9);
}

/* ============================================
   CONTAINER PRINCIPAL
============================================ */


.app-wrapper {
    width: 100%;
}

/* Mobile : Container fixe */
@media (max-width: 1023px) {
    .app-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 70px;
        overflow: hidden;
    }
}

/* Desktop : Container normal avec scroll */
@media (min-width: 1024px) {
    .app-wrapper {
        position: relative;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .bottom-nav {
        display: none;
    }
    
    body {
        overflow-y: auto;
        position: static;
        height: auto;
    }
}

.view-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================
   VUE LISTE
============================================ */
.events-list {
    height: 100%;
    overflow-y: auto;
    padding: 160px 16px 16px;
    background: var(--bg-dark);
    width: 100%;
}

.event-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid var(--border);
}

.event-card:active {
    transform: scale(0.98);
}

.event-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    background: #000;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    z-index: 2;
}

.event-date-badge i {
    color: var(--primary);
}

/* 🆕 Badge de catégorie de lieu */
.venue-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.event-content {
    padding: 16px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-time {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.event-price {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.no-events i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ============================================
   VUE CARTE
============================================ */
#map {
    width: 100%;
    height: 100%;
}

/* Masquer contrôles Leaflet */
.leaflet-control-zoom,
.leaflet-control-attribution {
    display: none !important;
}

/* Marqueurs */

/* 🆕 Mini-cartes clustering avec photo floue */
.cluster-marker {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cluster-marker:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.6);
}

/* Image de fond floutée */
.cluster-marker-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.7);
    z-index: 1;
}

/* Nombre d'événements au centre */
.cluster-marker-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Groupe de clusters Leaflet (styling par défaut) */
.marker-cluster {
    background: transparent !important;
}

.marker-cluster div {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Badge petit pour événement unique */
.cluster-marker.single-event {
    width: 60px;
    height: 60px;
}

.cluster-marker.single-event .cluster-marker-count {
    font-size: 20px;
}


/* Sidebar (desktop only) */
.sidebar-events {
    display: none;
}

/* ============================================
   BOTTOM NAV
============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border: none;
    background: none;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.nav-btn.active {
    color: var(--primary);
}

.nav-btn i {
    font-size: 22px;
}

.nav-btn span {
    font-size: 11px;
    font-weight: 500;
}

/* ============================================
   MODAL DE PRÉVISUALISATION ÉVÉNEMENT
============================================ */
.event-preview-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    animation: fadeIn 0.3s ease;
}

.event-preview-modal.active {
    display: flex;
    align-items: flex-end;
}

.event-preview-content {
    background: white;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUpPreview 0.3s ease;
    position: relative;
}

/* 🆕 MODAL CENTRÉ SUR DESKTOP */

@keyframes slideUpPreview {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.close-preview {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-preview-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.event-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🆕 MODAL CENTRÉ SUR DESKTOP */
@media (min-width: 1024px) {
    .event-preview-modal.active {
        align-items: center;
        justify-content: center;
    }
    
    .event-preview-content {
        max-width: 800px;
        max-height: 90vh;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    .event-preview-image {
        height: 400px;
        border-radius: 24px 24px 0 0;
    }
    
    /* 🆕 Image entière sur desktop */
    .event-preview-image img {
        object-fit: contain;
        background: #000;
    }
}

.event-preview-body {
    padding: 24px;
}

#preview-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.preview-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.preview-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.preview-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.preview-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.genre-badge {
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 16px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.preview-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.btn-preview-details {
    width: 100%;
    padding: 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-preview-details:active {
    transform: scale(0.98);
}

/* ============================================
   MODAL FILTRES
============================================ */
.filters-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.filters-modal.active {
    display: block;
}

.modal-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    flex-shrink: 0;
}

.close-modal {
    position: absolute;
    left: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 4px;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

/* Pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-btn {
    padding: 10px 18px;
    background: white;
    border: 2px solid #00D9A3;
    border-radius: 24px;
    color: #00D9A3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.pill-btn.active {
    background: #001F3F;
    border-color: #001F3F;
    color: white;
}

/* 🆕 Pills pour les filtres de lieux (data-venue) */
.pill-btn[data-venue] {
    transition: all 0.3s ease;
}

.pill-btn[data-venue].active {
    background: var(--category-color);
    color: white;
    border-color: var(--category-color);
    transform: scale(1.05);
    font-weight: 600;
}

/* Section Date */
.date-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.date-input {
    width: 100%;
}

.date-input label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.date-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #001F3F;
    border-radius: 12px;
    font-size: 14px;
    color: #001F3F;
    font-weight: 600;
}

/* Section Lieu */
.search-location {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 12px 16px;
}

.search-location i {
    color: #999;
    margin-right: 12px;
}

.search-location input {
    flex: 1;
    border: none;
    background: none;
    font-size: 15px;
    color: #333;
    outline: none;
}

.location-suggestions {
    display: none;
}

/* Section Prix */
.price-range {
    margin-top: 16px;
}

.price-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 12px;
}

.price-bar {
    flex: 1;
    background: #001F3F;
    border-radius: 4px 4px 0 0;
    min-height: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 12px;
    color: #999;
}

.free-label {
    color: #001F3F;
    font-weight: 600;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-inputs input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
}

.price-inputs span {
    color: #999;
}

/* Footer modal */
.modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.reset-btn,
.confirm-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.reset-btn {
    background: white;
    color: #001F3F;
}

.confirm-btn {
    background: #001F3F;
    color: white;
}

/* ============================================
   🆕 DESKTOP (>= 1024px) - GRILLE 3x3
============================================ */
@media (min-width: 1024px) {
    /* Barre de recherche - Moitié d'écran */
    .search-header {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
        right: auto;
    }

    /* Vue Liste - GRILLE 3 COLONNES */
    .events-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 240px 48px 80px;
        max-width: 1600px;
        margin: 0 auto;
        height: auto;
    }

    .event-card {
        height: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(255, 140, 66, 0.3);
    }
    
    .event-image-container {
        height: 220px;
    }
    
    .event-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .event-title {
        flex: 1;
    }
    
    .no-events {
        grid-column: 1 / -1;
    }

    /* Sidebar événements (pour la vue carte seulement) */
    #map-view .sidebar-events {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: 0;
        width: 380px;
        height: 100%;
        background: var(--bg-dark);
        border-left: 1px solid var(--border);
        z-index: 100;
    }

    .sidebar-header {
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }

    .sidebar-header h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .sidebar-tabs {
        display: flex;
        gap: 8px;
    }

    .sidebar-tab {
        flex: 1;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        color: var(--text-gray);
        font-weight: 600;
        cursor: pointer;
    }

    .sidebar-tab.active {
        background: var(--primary);
        color: white;
    }

    .sidebar-filters {
        display: flex;
        gap: 8px;
        padding: 16px;
        border-bottom: 1px solid var(--border);
    }

    .quick-filter {
        padding: 6px 14px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 20px;
        color: var(--text-gray);
        font-size: 12px;
        cursor: pointer;
    }

    .quick-filter.active {
        background: var(--primary);
        color: white;
    }

    .sidebar-content {
        flex: 1;
        overflow-y: auto;
        padding: 16px;
    }

    .sidebar-tab-content {
        display: none;
    }

    .sidebar-tab-content.active {
        display: block;
    }

    .sidebar-event-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
        cursor: pointer;
    }

    .sidebar-event-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .sidebar-event-info {
        padding: 12px;
    }

    .sidebar-event-name {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .sidebar-event-date,
    .sidebar-event-location {
        font-size: 12px;
        color: var(--text-gray);
        margin-bottom: 4px;
        display: flex;
        gap: 6px;
    }

    .sidebar-event-price {
        color: var(--primary);
        font-size: 13px;
        font-weight: 600;
        margin-top: 8px;
    }

    /* Carte - Réduire la largeur si sidebar visible */
    #map-view #map {
        width: calc(100% - 380px);
    }
}



/* ============================================
   🦶 FOOTER LÉGAL
============================================ */
.legal-footer {
    background: transparent;
    padding: 48px 16px 80px; /* 80px pour compenser la bottom-nav */
    margin-top: 0;
    position: relative;
    width: 100%;
}

/* Desktop : padding normal */
@media (min-width: 1024px) {
    .legal-footer {
        padding: 60px 48px 40px;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #6C5CE7, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.footer-links a:active {
    transform: scale(0.95);
    background: rgba(255, 140, 66, 0.2);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:active {
    transform: scale(0.9);
    background: var(--primary);
    color: white;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 12px;
    text-align: center;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    line-height: 1.5;
}

/* Desktop : Footer horizontal */
@media (min-width: 1024px) {
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-links a {
        width: auto;
        padding: 10px 20px;
    }
    
    .footer-links a:hover {
        color: var(--primary);
        background: rgba(255, 140, 66, 0.1);
        border-color: var(--primary);
        transform: translateY(-2px);
    }
    
    .footer-social a:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-3px) scale(1.1);
    }
}


/* ============================================
   🎨 HEADER BOUNCE BILLETTERIE - Simple
============================================ */
.bounce-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 20px 0 16px;
    background: transparent; /* Pas de bande de couleur */
    pointer-events: none; /* Le texte ne bloque pas les clics */
}

.bounce-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: auto;
}

/* Ajuster la position de la barre de recherche */
.search-header {
    top: 70px; /* Espace pour le header (20px + 24px + 16px + 10px marge) */
}

/* Ajuster le padding des listes pour compenser le header */
.events-list {
    padding-top: 230px; /* 70px header + 160px barre de recherche/filtres */
}

/* Desktop : Texte encore plus gros */
@media (min-width: 1024px) {
    .bounce-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .search-header {
        top: 75px;
    }
    
    .events-list {
        padding-top: 310px;
    }
}

/* Mobile : Texte légèrement plus petit */
@media (max-width: 768px) {
    .bounce-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .search-header {
        top: 65px;
    }
    
    .events-list {
        padding-top: 220px;
    }
}
