.tickets-hero {
    padding: 150px 0 70px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(142, 61, 255, 0.18), transparent 42%),
        radial-gradient(circle at right, rgba(255, 89, 193, 0.10), transparent 38%),
        linear-gradient(180deg, #03050c 0%, #05070f 100%);
}

.tickets-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.tickets-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #d8a84e;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tickets-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.tickets-subtext {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255,255,255,0.72);
    font-size: 1.02rem;
    line-height: 1.7;
}

.tickets-section {
    padding: 70px 0 100px;
    background: linear-gradient(180deg, #05070f 0%, #020307 100%);
}

.tickets-layout {
    display: grid;
    grid-template-columns: 1.7fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ticket-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.ticket-card.featured {
    border-color: rgba(214,92,255,0.35);
    box-shadow: 0 20px 45px rgba(214,92,255,0.08), 0 18px 40px rgba(0,0,0,0.28);
}

.ticket-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(214,92,255,0.14);
    color: #efdcff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticket-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.7rem;
}

.ticket-price {
    margin: 0 0 14px;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
}

.ticket-desc {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.ticket-features {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.ticket-features li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.ticket-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.qty-btn:hover {
    background: rgba(214,92,255,0.16);
    color: #f2ddff;
}

.qty-input {
    width: 56px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    outline: none;
}

.tickets-summary {
    position: sticky;
    top: 120px;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.summary-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #d8a84e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tickets-summary h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 1.7rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.8);
}

.summary-divider {
    height: 1px;
    margin: 18px 0;
    background: rgba(255,255,255,0.08);
}

.summary-row.total {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-note {
    margin: 20px 0 0;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}

.summary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    padding: 15px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #e24a72, #8b46ff);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(139,70,255,0.24);
}

.ticket-card-closed {
    position: relative;
    opacity: 0.92;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-badge-closed {
    background: rgba(255, 255, 255, 0.08);
    color: #d4d4d8;
}

.old-price {
    color: #d4d4d8;
    text-decoration: line-through;
    opacity: 0.95;
}

.ticket-closed-box {
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
    color: #bdbdc7;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    user-select: none;
}

.ticket-card-closed .ticket-features li,
.ticket-card-closed .ticket-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
    .tickets-layout {
        grid-template-columns: 1fr;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .tickets-summary {
        position: static;
    }
}
