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

 body {
            font-family: 'Segoe UI', system-ui, sans-serif;
              background: #0f0f0f;
    color: #f0f0f0;
            min-height: 100vh;
        }
main{
      max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}
.top h1{
    font-size: 2.4rem;
    font-weight: 800;
    color:#fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: none;
}
.top h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ec3750;
    margin: 14px auto 0;
    border-radius: 2px;
}
.top h3 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

#events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.event-card{
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin: 0;
    cursor: pointer;
    transition: border-color 0.2s transform 0.15s box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.event-card button{
    background-color:violet;
    color:antiquewhite;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.event-card button:hover{
    background-color: tomato;
}


#map {
    height: 400px;
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}


::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #2e2e2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ec3750; }