.upcoming-events {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.upcoming-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ff3333" stroke-width="0.5" stroke-opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,51,51,0.3);
}

.event-date-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(255,51,51,0.3);
    transition: all 0.3s ease;
}

.event-card:hover .event-date-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255,51,51,0.4);
}

.event-date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.event-date-badge .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-right: 100px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.event-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.info-item i {
    width: 24px;
    margin-right: 10px;
    color: #ff3333;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.event-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-event, .btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    min-width: 120px;
    text-align: center;
}

.btn-event {
    background: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255,51,51,0.3);
}

.btn-event:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255,51,51,0.4);
    color: white;
}

.btn-ticket {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ticket:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateX(5px);
}

.btn-event i, .btn-ticket i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #ff3333;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-more:hover {
    background: #ff3333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,51,51,0.3);
}

.btn-more i {
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .event-card {
        padding: 1.5rem;
    }
    
    .event-date-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .event-title {
        padding-right: 0;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .event-actions {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .btn-event, .btn-ticket {
        width: auto;
        min-width: 100px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.event-artist {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.artist-frame {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.artist-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff3333, #ff6666, #ff3333);
    border-radius: 15px;
    z-index: 1;
    animation: borderGlow 2s linear infinite;
}

.event-artist-image {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.event-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-artist:hover .event-artist-image img {
    transform: scale(1.1);
}

.event-artist-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #ffffff, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes borderGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .artist-frame {
        width: 60px;
        height: 60px;
    }

    .event-artist-image {
        width: 60px;
        height: 60px;
    }
    
    .event-artist-name {
        font-size: 1.1rem;
    }
}
