.tour-page {
    padding: 120px 0 60px;
    background: #0A0A0A;
}

.page-title {
    font-size: 48px;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 20px;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tour-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tour-item:hover {
    transform: translateX(10px);
    background: rgba(138, 43, 226, 0.15);
}

.date-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.date-badge {
    text-align: center;
    min-width: 60px;
}

.date {
    font-size: 32px;
    font-weight: 700;
    color: #8A2BE2;
}

.month {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.city {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.venue {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.ticket-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.sold-out-badge {
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    color: #ff4444;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-item.sold-out {
    opacity: 0.7;
}

.past-shows {
    opacity: 0.7;
}

.past-shows .tour-item {
    background: rgba(255, 255, 255, 0.05);
}

.past-shows .tour-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.07);
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        margin-left: 15px;
    }

    .section-title {
        margin-left: 15px;
    }

    .tour-item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .date-info {
        width: 100%;
        justify-content: flex-start;
    }

    .ticket-info {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
        margin-left: 10px;
    }

    .section-title {
        margin-left: 10px;
    }

    .date {
        font-size: 28px;
    }

    .city {
        font-size: 18px;
    }

    .venue {
        font-size: 14px;
    }
} 