:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.ticket-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.payment-method {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.selected {
    border: 2px solid var(--primary);
    background-color: rgba(79, 70, 229, 0.05);
}

.hidden {
    display: none;
}

.btn-primary {
    background: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--secondary);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.section-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: white;
}
.active-day {
    background-color:rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.active-day h4,
.active-day p,
.active-day .offers {
    color: #f8fafc;
}

.offers{
    list-style: circle;
    margin: 20px;
}