.awan-spinwheel {
    --awan-sw-bg: #f4f7fb;
    background: linear-gradient(135deg, var(--awan-sw-bg), #ffffff);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #d9e0ea;
    max-width: 980px;
    margin: 20px auto;
}

.awan-sw-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.awan-sw-form-wrap {
    background: #ffffff;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #d9e0ea;
}

.awan-sw-form-wrap h3 {
    margin-top: 0;
}

.awan-sw-field {
    margin-bottom: 10px;
}

.awan-sw-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.awan-sw-field input {
    width: 100%;
}

.awan-sw-form-status {
    min-height: 20px;
    margin: 8px 0 0;
    font-size: 13px;
}

.awan-sw-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.awan-sw-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid #111;
    position: absolute;
    top: -2px;
    z-index: 6;
}

.awan-sw-wheel {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.awan-sw-labels {
    position: absolute;
    inset: 0;
}

.awan-sw-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    width: 36%;
    text-align: right;
    font-weight: 700;
    color: #0f172a;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.awan-sw-result {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #d9e0ea;
    padding: 14px;
    margin-top: 8px;
    width: 100%;
    max-width: 420px;
}

.awan-sw-result-title {
    margin-top: 0;
}

.awan-sw-result-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .awan-sw-inner {
        grid-template-columns: 1fr;
    }

    .awan-sw-wheel {
        width: 310px;
        height: 310px;
    }
}
