* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.premium-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.header h2 {
    color: #FFD700;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.header p {
    font-size: 14px;
    color: #b0bec5;
    margin-bottom: 30px;
}

.wheel-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 30px auto;
}

.pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid #FFD700;
    z-index: 10;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5));
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 0 15px rgba(0,0,0,0.8);
    background: conic-gradient(
        #e74c3c 0deg 60deg,
        #e67e22 60deg 120deg,
        #f1c40f 120deg 180deg,
        #2ecc71 180deg 240deg,
        #3498db 240deg 300deg,
        #9b59b6 300deg 360deg
    );
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.14, 0.9, 0.46, 0.98);
}

.prize-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform-origin: 0% 50%;
    transform: rotate(calc(var(--i) * 60deg - 60deg));
    z-index: 2;
}

.prize-text span {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-align: right;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.form-hint {
    font-size: 13px;
    color: #FFD700;
    font-weight: 600;
}

.form-section input, .form-section select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #FFD700;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 15px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-section select option {
    background: #17202a;
    color: #fff;
}

.form-section input::placeholder {
    color: #888;
}

.form-section input:focus, .form-section select:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.glow-btn {
    background: linear-gradient(45deg, #FFD700, #F39C12);
    color: #111;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

.glow-btn:disabled {
    background: #555;
    color: #888;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
.salon-logo {
    max-width: 220px; 
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}
#result {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #FFD700;
    min-height: 30px;
}

.developer-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #b0bec5;
    letter-spacing: 0.5px;
    text-align: center;
    z-index: 10;
}

.developer-footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 400px) {
    .wheel-wrapper {
        width: 280px; 
        height: 280px;
    }
    .prize-text span {
        font-size: 13px; 
        right: 25px;
    }
    .premium-container {
        padding: 30px 20px; 
    }
    .header h2 {
        font-size: 24px;
    }
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}