/* ÇARK POPUP STİLLERİ */
.wheel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.wheel-modal.active {
    display: flex;
}

.wheel-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.wheel-container h2 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 28px;
}

.wheel-container p {
    color: #666;
    margin-bottom: 30px;
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

#wheelCanvas {
    display: block;
    margin: 0 auto;
}

.wheel-center {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FF6117;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.wheel-pointer {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #FF6117;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}

.spin-button {
    background: linear-gradient(135deg, #FF6117 0%, #E55100 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 97, 23, 0.3);
    margin-bottom: 20px;
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 97, 23, 0.4);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.result-box {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

#resultText {
    color: #2E7D32;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.copy-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.copy-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}
