/**
 * ÇevirKazan Pro - Frontend Styles (Tam İşlevsel & Modern Tasarım)
 */

/* ===== TETIKLEME BUTONU - SOL ALTA FİXED OVAL ===== */
.cevirkazan-trigger-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;  /* Sol alta sabitlendi */
    z-index: 9999;
    background: linear-gradient(135deg, #85354F 0%, #a54566 100%);
    color: white;
    border: none;
    padding: 16px 40px;  /* Oval için daha geniş padding */
    border-radius: 60px;  /* Daha oval şekil */
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(133, 53, 79, 0.5), 0 0 0 0 rgba(133, 53, 79, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: pulseButton 2s ease-in-out infinite;
    min-width: 200px;  /* Daha geniş */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;  /* Sabit yükseklik - oval için */
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(133, 53, 79, 0.5), 0 0 0 0 rgba(133, 53, 79, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(133, 53, 79, 0.5), 0 0 0 15px rgba(133, 53, 79, 0);
    }
}

.cevirkazan-trigger-btn:hover {
    background: linear-gradient(135deg, #652839 0%, #85354F 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(133, 53, 79, 0.65);
    animation: none;
}

.cevirkazan-trigger-btn:active {
    transform: translateY(-4px) scale(1.02);
}

/* İkon ve text stilleri */
.cevirkazan-trigger-btn .trigger-icon {
    font-size: 24px;
    line-height: 1;
}

.cevirkazan-trigger-btn .trigger-text {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

/* Sağ alt pozisyon (isteğe bağlı) */
.cevirkazan-trigger-btn.position-bottom-right {
    position: fixed;
    border-radius: 20px;
    padding: 0 10px;
    min-width: 200px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MODAL - PREMIUM DESIGN ===== */
.cevirkazan-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation: fadeIn 0.4s ease;
}

.cevirkazan-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(133, 53, 79, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(165, 69, 102, 0.3) 0%, transparent 50%),
        rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
}

.cevirkazan-modal-content {
    position: relative;
    background: #ffffff;
    margin: 3% auto;
    padding: 0;  /* Padding kaldırıldı, header ve body ayrı ayarlanacak */
    width: 95%;
    max-width: 650px;
    border-radius: 28px;
    box-shadow:
        0 25px 80px rgba(133, 53, 79, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    overflow: hidden;  /* Border radius için */
}

@keyframes modalSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium Close Button - Header İçinde */
.cevirkazan-close {
    position: absolute !important;
    top: 15px;
    right: 15px;
    color: white !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)!important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    border-radius: 50% !important;
    transition: all 0.3s
    cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1 !important;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.cevirkazan-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cevirkazan-close:active {
    transform: rotate(90deg) scale(1);
}

/* Result ekranında close butonu koyu renk (beyaz arka planda görünsün) */
.cevirkazan-close.dark-close {
    color: #85354F !important;
    background: rgba(133, 53, 79, 0.1) !important;
    border: 2px solid rgba(133, 53, 79, 0.3) !important;
}

.cevirkazan-close.dark-close:hover {
    background: rgba(133, 53, 79, 0.2) !important;
    border-color: rgba(133, 53, 79, 0.5) !important;
}

/* ===== PREMIUM HEADER ===== */
.cevirkazan-header {
    text-align: center;
    padding: 50px 40px 40px;
    background: linear-gradient(135deg, #85354F 0%, #a54566 50%, #652839 100%);
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan pattern */
.cevirkazan-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Üst dekoratif çizgi */
.cevirkazan-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.cevirkazan-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Başlıkta hediye emoji ikonu - Sadece form header'ında */
.cevirkazan-form-header h2::before {
    content: '🎁';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    animation: iconSpin 3s ease-in-out infinite;
}

/* Çark header'ında farklı ikon */
.cevirkazan-wheel-header h2::before {
    content: '🎉';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    animation: iconSpin 3s ease-in-out infinite;
}

/* Çark header subtitle */
.cevirkazan-wheel-header .wheel-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 10px 0 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* ===== FORM - LUXURY DESIGN ===== */
#cevirkazan-form-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(133, 53, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(165, 69, 102, 0.02) 0%, transparent 50%),
        #ffffff;
}

#cevirkazan-form {
    max-width: 460px;
    margin: 0 auto;
    padding: 35px;
}

.cevirkazan-form-description {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 18px 22px 18px 56px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: #85354F;
    box-shadow:
        0 0 0 4px rgba(133, 53, 79, 0.12),
        0 4px 12px rgba(133, 53, 79, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Input ikonları - Daha belirgin */
.form-group::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-65%);
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
    transition: all 0.3s ease;
}

.form-group:has(input:focus)::before {
    opacity: 1;
    transform: translateY(-65%) scale(1.1);
}

.form-group:has(input[type="text"])::before {
    content: '👤';
    font-size: 20px;
}

.form-group:has(input[type="email"])::before {
    content: '✉️';
    font-size: 20px;
}

.consent-group {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.consent-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #85354F;
}

.consent-label a {
    color: #85354F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.consent-label a:hover {
    text-decoration: underline;
    color: #652839;
}

/* ===== PREMIUM BUTTONS ===== */
.cevirkazan-btn {
    width: 100%;
    padding: 18px 32px!important;
    font-size: 17px!important;
    font-weight: 800!important;
    border: none!important;
    border-radius: 50px!important;
    cursor: pointer!important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)!important;
    font-family: inherit!important;
    text-transform: uppercase!important;
    letter-spacing: 0.5px;
    position: relative!important;
    overflow: hidden;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    gap: 10px!important;
}

/* Button içindeki ikon ve text */
.cevirkazan-btn .btn-icon {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.cevirkazan-btn:hover .btn-icon {
    transform: rotate(20deg) scale(1.2);
}

.cevirkazan-btn .btn-text {
    position: relative;
    z-index: 1;
}

/* Submit button shimmer efekti */
.cevirkazan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cevirkazan-btn:hover::before {
    left: 100%;
}

.cevirkazan-btn-primary {
    background: linear-gradient(135deg, #85354F 0%, #a54566 50%, #85354F 100%)!important;
    background-size: 200% 100%!important;
    color: white!important;
    box-shadow:
        0 6px 20px rgba(133, 53, 79, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2)!important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)!important;
}

.cevirkazan-btn-primary:hover {
    transform: translateY(-3px) scale(1.02)!important;
    box-shadow:
        0 8px 25px rgba(133, 53, 79, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3)!important;
    background-position: 100% 0!important;
}

.cevirkazan-btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.cevirkazan-btn-secondary {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cevirkazan-btn-secondary:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #dadada 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cevirkazan-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ===== ÇARK - PREMIUM DESIGN ===== */
#cevirkazan-wheel-section {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 80% 20%, rgba(133, 53, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(165, 69, 102, 0.02) 0%, transparent 50%),
        #ffffff;
}

/* Çark Area - Premium Frame */
.cevirkazan-wheel-area {
    padding: 30px 20px;
    position: relative;
}

.cevirkazan-wheel-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dekoratif elementler - Kaldırıldı (boşluk için) */
.wheel-decoration {
    display: none;
}

#cevirkazan-canvas {
    display: block;
    margin: 0 auto;
    width: 100% !important;
    height: 100% !important;
    max-width: 600px;
    max-height: 600px;
    position: absolute;
}

/* Pointer (üstteki ok) - TAM ORTALI */
.cevirkazan-pointer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #85354F;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    z-index: 50;
    animation: pointerBounce 1.5s ease-in-out infinite;
}

.cevirkazan-pointer::after {
    content: '';
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #85354F;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(133, 53, 79, 0.3);
}

@keyframes pointerBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Merkez spin butonu - TAM ORTADA PREMIUM */
.cevirkazan-spin-center-btn {
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%)!important;
    width: 140px!important;
    height: 140px!important;
    border-radius: 50%!important;
    background: linear-gradient(135deg, #85354F 0%, #a54566 50%, #85354F 100%)!important;
    background-size: 200% 100%!important;
    border: 8px solid white!important;
    box-shadow:
        0 15px 50px rgba(133, 53, 79, 0.6),
        inset 0 -3px 15px rgba(0, 0, 0, 0.25),
        inset 0 2px 5px rgba(255, 255, 255, 0.3),
        0 0 0 3px #85354F,
        0 0 20px rgba(133, 53, 79, 0.3)!important;
    cursor: pointer!important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)!important;
    display: flex!important;
    flex-direction: column!important;
    align-items: center!important;
    justify-content: center!important;
    z-index: 500!important;
    animation: spinButtonPulse 2.5s ease-in-out infinite!important;
}

@keyframes spinButtonPulse {
    0%, 100% {
        box-shadow:
            0 10px 30px rgba(133, 53, 79, 0.5),
            inset 0 -2px 10px rgba(0, 0, 0, 0.2),
            0 0 0 2px #85354F,
            0 0 0 0 rgba(133, 53, 79, 0.4);
    }
    50% {
        box-shadow:
            0 10px 30px rgba(133, 53, 79, 0.5),
            inset 0 -2px 10px rgba(0, 0, 0, 0.2),
            0 0 0 2px #85354F,
            0 0 0 15px rgba(133, 53, 79, 0);
    }
}

.cevirkazan-spin-center-btn:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(133, 53, 79, 0.6),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2),
        0 0 0 2px #85354F;
    animation: none;
}

.cevirkazan-spin-center-btn:active:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
}

.cevirkazan-spin-center-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: none;
}

.cevirkazan-spin-center-btn .spin-icon {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 5px;
    animation: giftBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes giftBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(-5deg);
    }
}

.cevirkazan-spin-center-btn:hover .spin-icon {
    animation: giftBounce 0.6s ease-in-out infinite;
}

.cevirkazan-spin-center-btn .spin-text-overlay {
    color: white;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* Eski spin-text class'ı için fallback (frontend.js'de kullanılıyor) */
.cevirkazan-spin-center-btn .spin-text {
    display: none;
}

/* ===== DURUM MESAJI ===== */
.cevirkazan-status {
    text-align: center;
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    display: none;
}

.cevirkazan-status.status-info {
    background: #e3f2fd;
    color: #1976d2;
}

.cevirkazan-status.status-success {
    background: #e8f5e9;
    color: #388e3c;
}

.cevirkazan-status.status-error {
    background: #ffebee;
    color: #d32f2f;
}

/* ===== SONUÇ ===== */
#cevirkazan-result {
    text-align: center;
    padding: 40px 30px;
}

.cevirkazan-result-icon {
    font-size: 100px;
    margin-bottom: 20px;
    animation: resultBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes resultBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

#cevirkazan-result-message {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #85354F 0%, #a54566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    line-height: 1.3;
}

.cevirkazan-result-coupon {
    background: linear-gradient(135deg, #85354F 0%, #a54566 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow:
        0 10px 30px rgba(133, 53, 79, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cevirkazan-result-coupon .coupon-label, .cevirkazan-result-coupon  .coupon-code{
    color: #fff;
}

.cevirkazan-result-coupon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.coupon-label {
    color: #85354F;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.coupon-code {
    color: #85354F;
    font-size: 42px;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin: 15px 0;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coupon-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 12px 0 0;
    position: relative;
    z-index: 1;
}

/* ===== ANIMASYONLAR ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cevirkazan-trigger-btn {
        bottom: 20px;
        left: 20px;  /* Sol alt korunuyor */
        padding: 14px 32px;  /* Oval korunuyor */
        font-size: 16px;
        min-width: 180px;
        height: 50px;  /* Oval yükseklik */
        border-radius: 50px;
    }

    .cevirkazan-trigger-btn .trigger-icon {
        font-size: 22px;
    }

    .cevirkazan-trigger-btn .trigger-text {
        font-size: 15px;
        color: #fff!important;
    }



    .cevirkazan-modal-content {
        margin: 5% auto;
        padding: 0;
        width: 95%;
        border-radius: 20px;
    }

    .cevirkazan-header h2 {
        font-size: 24px;
    }

    .cevirkazan-wheel-area {
        padding: 25px 15px;
    }

    .cevirkazan-wheel-wrapper {
        width: 330px;
        height: 330px;
    }

    .cevirkazan-wheel-wrapper #cevirkazan-canvas {
        max-width: 330px;
        max-height: 330px;
    }

    .cevirkazan-pointer {
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 36px solid #85354F;
    }

    .cevirkazan-spin-center-btn {
        width: 110px!important;
        height: 110px!important;
        border-width: 6px;
    }

    .cevirkazan-spin-center-btn .spin-icon {
        font-size: 42px;
    }

    .cevirkazan-spin-center-btn .spin-text-overlay {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .coupon-code {
        font-size: 32px;
        padding: 12px 20px;
        letter-spacing: 3px;
    }

    #cevirkazan-result-message {
        font-size: 22px;
    }

    .cevirkazan-result-icon {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .cevirkazan-trigger-btn {
        bottom: 15px;
        left: 15px;  /* Sol alt korunuyor */
        padding: 12px 28px;  /* Oval korunuyor */
        font-size: 14px;
        min-width: 160px;
        height: 44px;  /* Oval yükseklik */
        border-radius: 44px;
        gap: 8px;
    }

    .cevirkazan-trigger-btn .trigger-icon {
        font-size: 20px;
    }

    .cevirkazan-trigger-btn .trigger-text {
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #fff;
    }



    .cevirkazan-modal-content {
        padding: 0px;
    }

    .cevirkazan-header h2 {
        font-size: 20px;
    }

    .cevirkazan-header h2::before {
        font-size: 36px;
    }

    .cevirkazan-wheel-header .wheel-subtitle {
        font-size: 14px;
    }

    .cevirkazan-wheel-area {
        padding: 20px 10px;
    }

    .cevirkazan-wheel-wrapper {
        width: 325px;
        height: 325px;
    }

    .cevirkazan-wheel-wrapper #cevirkazan-canvas {
        max-width: 325px;
        max-height: 325px;
    }

    .cevirkazan-pointer {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 30px solid #85354F;
    }

    .cevirkazan-spin-center-btn {
        width: 90px!important;
        height: 90px!important;
        border-width: 5px;
    }

    .cevirkazan-spin-center-btn .spin-icon {
        font-size: 36px;
    }

    .cevirkazan-spin-center-btn .spin-text-overlay {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .coupon-code {
        font-size: 24px;
        padding: 10px 15px;
        letter-spacing: 2px;
    }

    #cevirkazan-result-message {
        font-size: 18px;
    }

    .cevirkazan-result-icon {
        font-size: 70px;
    }
}

/* Modal açıkken body scroll'unu engelle */
body.cevirkazan-modal-open {
    overflow: hidden;
}
