.wheel-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--color2) 0%, var(--color1) 100%);
}

.wheel-page__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 25, 72, 0.35);
    backdrop-filter: blur(4px);
}

.wheel-page__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 28px 24px 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(17, 24, 39, 0.28);
}

.wheel-page__queue {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.wheel-page__queue-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f4f4f5;
    display: grid;
    place-items: center;
}

.wheel-page__queue-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.wheel-page__queue-subtitle {
    margin: 0;
    color: rgba(2, 25, 72, 0.65);
    font-size: 14px;
}

.wheel {
    position: relative;
    width: min(100%, 320px);
    margin: 0 auto 20px;
    aspect-ratio: 1;
}

.wheel__spinner {
    --wheel-spin: 0deg;
    width: 100%;
    height: 100%;
    transform: rotate(var(--wheel-spin));
    transition: transform 4.8s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    filter: drop-shadow(0 8px 24px rgba(17, 24, 39, 0.16));
}

.wheel.is-spinning .wheel__spinner {
    transition-duration: 5.2s;
}

.wheel__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wheel__slice-path {
    stroke: none;
}

.wheel__slice-label {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    user-select: none;
}

.wheel__slice-label--light {
    fill: #ffffff;
}

.wheel__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36%;
    height: 36%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95);
    z-index: 2;
    pointer-events: none;
}

.wheel__ticker {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.wheel__text {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(2, 25, 72, 0.8);
}

.wheel-page__result {
    text-align: center;
    animation: fadeInUp 0.45s ease;
}

.wheel-page__result-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
}

.wheel-page__result-count {
    margin: 0 0 8px;
    font-size: 16px;
}

.wheel-page__result-hint {
    margin: 0 0 18px;
    color: rgba(2, 25, 72, 0.65);
    font-size: 14px;
}

.wheel-page__cta {
    width: 100%;
}

.d-none {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
