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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    color: black;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.logo {
    width: 230px;
    height: 200px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.title-container {
    text-align: left;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    margin: 0;
}

.header p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin: 0;
}

.search-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

#searchInput {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(5, 150, 105, 0.3);
    border-radius: 50px;
    width: 350px;
    font-size: 16px;
    outline: none;
    background: rgba(30, 41, 59, 0.8);
    color: #f8fafc;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    background: rgba(30, 41, 59, 1);
}

#searchInput::placeholder {
    color: #94a3b8;
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

#clearBtn {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

#clearBtn:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.map-container {
    height: 600px;
    margin: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

#map {
    height: 100%;
    width: 100%;
}

.events-list {
    margin: 2rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.events-list h3 {
    margin-bottom: 1.5rem;
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
}

.event-item {
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
    cursor: pointer;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
    border-color: rgba(5, 150, 105, 0.4);
    background: rgba(15, 23, 42, 0.8);
}

.event-band {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.event-details {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.event-date {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #047857 0%, #0284c7 100%);
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-container {
        text-align: center;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .search-container {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }
    
    #searchInput {
        width: 90%;
        margin-bottom: 1rem;
    }
    
    .map-container {
        margin: 1rem;
        height: 400px;
        border-radius: 15px;
    }
    
    .events-list {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .event-item {
        padding: 1rem;
        border-radius: 10px;
    }
}