.events-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

        
.events-section h2 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

        
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

        
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

        
.event-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.2s;
    border-left: 4px solid #667eea;
    cursor: pointer;
}

        
.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

        
.event-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-size: 1rem;
}

        
.event-info {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

        
.event-venue {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

        
.event-venue a {
    color: #667eea;
    text-decoration: none;
}

        
.event-venue a:hover {
    text-decoration: underline;
}

        
.event-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

        
.artist-tag {
    background: #e0e7ff;
    color: #4c51bf;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

        
.artist-tag:hover {
    background: #667eea;
    color: white;
}

        
.event-price {
    color: #27ae60;
    font-weight: 600;
    margin-top: 0.5rem;
}