.wpesw-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.wpesw-wheel-container {
    position: relative;
    width: 100%;
    margin: 0 auto 30px;
}

#wpesw-wheel {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wpesw-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.wpesw-spin-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wpesw-spin-button:hover {
    background: #3e8e41;
}

.wpesw-spin-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.wpesw-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #f44336;
    z-index: 5;
}

/* Form styles */
.wpesw-form-container {
    text-align: left;
}

.wpesw-form-group {
    margin-bottom: 15px;
}

.wpesw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wpesw-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.wpesw-submit-btn {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.wpesw-submit-btn:hover {
    background: #0b7dda;
}

/* Result styles */
.wpesw-result-container {
    text-align: center;
}

.wpesw-prize-label {
    font-weight: bold;
    color: #4CAF50;
}

.wpesw-no-offers,
.wpesw-already-spun {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
    text-align: center;
}