/* Trigger Button */
#fw-trigger-2bdc05f0 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff3366;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-weight: bold;
    transition: transform 0.2s ease;
}
#fw-trigger-2bdc05f0:hover {
    transform: scale(1.05);
}

/* Modal Overlay */
#fw-modal-2bdc05f0 {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
#fw-modal-2bdc05f0.fw-modal-hidden {
    opacity: 0;
    pointer-events: none;
}
.fw-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}
.fw-modal-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#fw-close-2bdc05f0 {
    position: absolute;
    top: 10px; right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Wheel */
.fw-wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 20px auto;
}
.fw-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #333;
    z-index: 10;
}
.fw-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #333;
    transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fw-wheel-inner {
    width: 100%;
    height: 100%;
    background: conic-gradient(
        #ff5e5e 0deg 72deg,
        #4caf50 72deg 144deg,
        #2196f3 144deg 216deg,
        #ffc107 216deg 288deg,
        #9c27b0 288deg 360deg
    );
}

/* Form */
#fw-form-2bdc05f0 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#fw-email-2bdc05f0 {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
#fw-spin-btn-2bdc05f0 {
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
#fw-spin-btn-2bdc05f0:disabled {
    background: #999;
    cursor: not-allowed;
}

.fw-message {
    margin-top: 15px;
    font-weight: bold;
    color: #e53935;
}
.fw-message.success {
    color: #4caf50;
}
