.wcdld-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.wcdld-header h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.wcdld-header p {
    margin: 0 0 22px;
    color: #475569;
}

.wcdld-wheel-layout {
    display: grid;
    grid-template-columns: minmax(280px, 540px) minmax(280px, 1fr);
    gap: 28px;
    align-items: center;
}

.wcdld-wheel-stage {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

#wcdld-wheel {
    width: 100%;
    height: auto;
    display: block;
}

.wcdld-pointer {
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 36px solid #ef4444;
    z-index: 2;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.12));
}

.wcdld-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wcdld-message {
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.wcdld-success {
    background: #ecfdf5;
    border-color: #86efac;
}

.wcdld-error {
    background: #fef2f2;
    border-color: #fca5a5;
}

.wcdld-ready {
    background: #eff6ff;
    border-color: #93c5fd;
}

.wcdld-prize {
    font-weight: 700;
}

.wcdld-draw-button.button,
.wcdld-draw-button {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.wcdld-last-draw {
    color: #334155;
    font-size: 14px;
}

.wcdld-legend {
    display: grid;
    gap: 10px;
}

.wcdld-legend-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.wcdld-legend-title {
    font-weight: 700;
    color: #0f172a;
}

.wcdld-legend-meta {
    color: #64748b;
    text-align: right;
}

@media (max-width: 900px) {
    .wcdld-wheel-layout {
        grid-template-columns: 1fr;
    }
}
