.tickets-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3a7764, #4fa37e);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.tickets-subtitle {
    font-size: 1.05rem;
    color: #50645c;
}


.tickets-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
    margin-top: 60px;
}


.ticket-card {
    width: 330px;
    padding: 38px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 30px rgba(58, 119, 100, 0.18);
    transition: 0.35s ease;
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(58,119,100,0.28);
}


.premium {
    border: 2px solid rgba(58, 119, 100, 0.4);
    box-shadow: 0 14px 40px rgba(58,119,100,0.32);
}

.premium-mark {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1.5rem;
    color: #d5a73c;
}


.ticket-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.ticket-icon {
    font-size: 3rem;
}

.ticket-title-block {
    text-align: left;
}

.ticket-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: #285c4f;
}

.ticket-price {
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3a7764, #8ac36a);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}


.ticket-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(58,119,100,0.1);
    padding: 8px 16px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 600;
}

.ticket-stock i {
    color: #3a7764;
}


.ticket-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.55;
}

.ticket-details li {
    margin-bottom: 6px;
}


.btn-ticket {
    background: linear-gradient(135deg, #3a7764, #4fa37e);
    color: #fff;
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ticket:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(79,163,126,0.45);
}

.btn-ticket.disabled {
    background: #777;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}
