/* Line Up Section */
.section-lineup {
    background-color: #030303;
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* SVG Background */
.section-lineup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='spotlight' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FF6B00;stop-opacity:0.15'/%3E%3Cstop offset='100%25' style='stop-color:%23FF6B00;stop-opacity:0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 300 L1440 150 L1440 800 L0 800 Z' fill='url(%23spotlight)' opacity='0.1'/%3E%3Cpath d='M0 400 L1440 250 L1440 800 L0 800 Z' fill='url(%23spotlight)' opacity='0.05'/%3E%3Cpath d='M0 500 L1440 350 L1440 800 L0 800 Z' fill='url(%23spotlight)' opacity='0.025'/%3E%3Ccircle cx='200' cy='150' r='2' fill='%23FF6B00' opacity='0.2'/%3E%3Ccircle cx='600' cy='200' r='2' fill='%23FF6B00' opacity='0.15'/%3E%3Ccircle cx='1000' cy='100' r='2' fill='%23FF6B00' opacity='0.2'/%3E%3Ccircle cx='1400' cy='150' r='2' fill='%23FF6B00' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 120% 120%;
    background-position: center;
    transform: translateZ(-1px) scale(2);
    z-index: 0;
}

/* Line Up Title */
.lineup-title {
    color: #FF6B00;
    font-size: 3.5rem;
    text-align: center;
    margin: 0 0 4rem 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Date Column */
.date-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.date-header {
    text-align: center;
    margin-bottom: 1rem;
}

.date-header h3 {
    color: #FF6B00;
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    position: relative;
    display: inline-block;
}

.date-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FF6B00;
    border-radius: 2px;
}

/* Performance Card */
.performance-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.performance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.performance-time {
    background: #FF6B00;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.performance-content {
    display: flex;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-info {
    flex: 1;
}

.artist-info h4 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.artist-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1rem;
}

.performance-link {
    width: 40px;
    height: 40px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.performance-link:hover {
    background: #FF6B00;
}

.performance-link::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 768px) {
    .lineup-title {
        font-size: 2.5rem;
    }

    .dates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .date-header h3 {
        font-size: 1.8rem;
    }

    .performance-content {
        padding: 1rem;
    }

    .artist-image {
        width: 100px;
        height: 100px;
    }

    .artist-info h4 {
        font-size: 1.2rem;
    }

    .performance-link {
        width: 35px;
        height: 35px;
    }
    .performance-link::after {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .performance-time {
        font-size: 1rem;
    }

    .artist-image {
        width: 80px;
        height: 80px;
    }
}