.tickets-empty-state {
    --zonga-purple: #a72be8;
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(690px, calc(100svh - 92px), 980px);
    overflow: hidden;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 50% 42%, rgba(105, 29, 150, .28), transparent 31%),
        radial-gradient(circle at 8% 45%, rgba(167, 43, 232, .12), transparent 25%),
        linear-gradient(145deg, #070b19 0%, #0d0a24 48%, #08071a 100%);
}

.tickets-empty-state::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(221, 151, 255, .22) 0 1px, transparent 1.6px),
        linear-gradient(115deg, transparent 35%, rgba(126, 55, 171, .08) 36% 64%, transparent 65%);
    background-position: 0 0, center;
    background-size: 46px 46px, cover;
    content: "";
    opacity: .35;
}

.tickets-empty-state__spotlight {
    position: absolute;
    z-index: -1;
    top: -10%;
    width: 24rem;
    height: 78%;
    filter: blur(16px);
    opacity: .56;
    transform-origin: top;
}

.tickets-empty-state__spotlight--left {
    left: -10rem;
    background: linear-gradient(100deg, transparent 28%, rgba(206, 149, 237, .48) 53%, transparent 78%);
    transform: rotate(-18deg);
}

.tickets-empty-state__spotlight--right {
    right: -7rem;
    background: linear-gradient(80deg, transparent 26%, rgba(187, 125, 226, .46) 52%, transparent 76%);
    transform: rotate(18deg);
}

.tickets-empty-state__content {
    z-index: 2;
    width: min(92%, 800px);
    padding: 3.5rem 1rem 11rem;
    text-align: center;
}

.tickets-empty-state__logo {
    display: block;
    width: clamp(150px, 20vw, 220px);
    height: auto;
    margin: -3.2rem auto -3rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .32));
}

.tickets-empty-state__title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.85rem);
    font-weight: 300;
    letter-spacing: -.035em;
    line-height: .98;
    text-transform: uppercase;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .38);
}

.tickets-empty-state__title span {
    display: block;
}

.tickets-empty-state__title strong {
    color: var(--zonga-purple);
    font-weight: 700;
}

.tickets-empty-state__accent {
    display: block;
    width: 66px;
    height: 3px;
    margin: 2.1rem auto 1.8rem;
    border-radius: 999px;
    background: var(--zonga-purple);
    box-shadow: 0 0 20px rgba(167, 43, 232, .75);
}

.tickets-empty-state__message {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.45;
}

.tickets-empty-state__status {
    display: inline-flex;
    min-width: min(100%, 330px);
    align-items: center;
    justify-content: center;
    gap: .85rem;
    margin-top: 2.1rem;
    padding: .9rem 2rem;
    border: 2px solid rgba(167, 43, 232, .82);
    border-radius: 999px;
    color: #fff;
    background: rgba(10, 8, 30, .38);
    box-shadow: 0 0 32px rgba(133, 27, 189, .16), inset 0 0 24px rgba(114, 23, 157, .08);
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: capitalize;
    backdrop-filter: blur(8px);
}

.tickets-empty-state__status svg {
    fill: none;
    stroke: var(--zonga-purple);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.tickets-empty-state__wave {
    position: absolute;
    z-index: 1;
    right: -2%;
    bottom: -1px;
    left: -2%;
    width: 104%;
    height: clamp(180px, 25vw, 330px);
    filter: drop-shadow(0 -8px 24px rgba(163, 37, 225, .12));
}

@media (max-width: 767.98px) {
    .tickets-empty-state {
        min-height: calc(100svh - 80px);
    }

    .tickets-empty-state__content {
        padding-top: 2rem;
        padding-bottom: 9rem;
    }

    .tickets-empty-state__logo {
        width: 150px;
        margin-top: -2rem;
        margin-bottom: -2.4rem;
    }

    .tickets-empty-state__title {
        line-height: 1.04;
    }

    .tickets-empty-state__status {
        min-width: 0;
        padding-inline: 1.6rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .tickets-empty-state__spotlight {
        animation: zonga-spotlight-drift 9s ease-in-out infinite alternate;
    }

    .tickets-empty-state__spotlight--right {
        animation-delay: -4s;
    }

    @keyframes zonga-spotlight-drift {
        to {
            opacity: .72;
            transform: rotate(13deg) translateX(2rem);
        }
    }
}
