﻿/**
 * Pop-up Uyari Sistemi - CSS v6.0
 * Premium & Modern Tasarım
 */

:root {
    --popup-primary: #8b0000;
    --popup-accent: #dc2626;
    --popup-bg: #050505;
    --popup-text: #ffffff;
    --popup-blur: 8px;
    --popup-opacity: 0.85;
    --popup-radius: 24px;
    --popup-width: 480px;
}

/* ========================================
   ANA OVERLAY
   ======================================== */

#popup-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2147483647 !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0, 0, 0, var(--popup-opacity)) !important;
    backdrop-filter: blur(var(--popup-blur)) !important;
    -webkit-backdrop-filter: blur(var(--popup-blur)) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

#popup-overlay.popup-active {
    display: flex !important;
    animation: overlayFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#popup-overlay.popup-closing {
    animation: overlayFadeOut 0.3s ease forwards !important;
}

@keyframes overlayFadeIn {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(var(--popup-blur)); }
}

@keyframes overlayFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Pozisyonlar */
#popup-overlay.popup-position-top { align-items: flex-start !important; padding-top: 60px !important; }
#popup-overlay.popup-position-bottom { align-items: flex-end !important; padding-bottom: 60px !important; }
#popup-overlay.popup-position-bottom-right { align-items: flex-end !important; justify-content: flex-end !important; padding: 30px !important; }
#popup-overlay.popup-position-bottom-left { align-items: flex-end !important; justify-content: flex-start !important; padding: 30px !important; }

/* ========================================
   ANA CONTAINER
   ======================================== */

.popup-container {
    position: relative !important;
    width: 100% !important;
    max-width: var(--popup-width) !important;
    padding: 45px 40px !important;
    border-radius: var(--popup-radius) !important;
    text-align: center !important;
    box-sizing: border-box !important;
    background: var(--popup-bg) !important;
    color: var(--popup-text) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    animation: containerSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
}

.popup-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
}

@keyframes containerSlideIn {
    from { 
        transform: translateY(30px) scale(0.95); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.popup-closing .popup-container {
    animation: containerSlideOut 0.3s ease forwards !important;
}

@keyframes containerSlideOut {
    to { 
        transform: translateY(20px) scale(0.95); 
        opacity: 0; 
    }
}

/* ========================================
   TEMALAR
   ======================================== */

/* KOYU TEMA */
.popup-theme-dark .popup-container {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%) !important;
}
.popup-theme-dark .popup-icon svg { 
    fill: var(--popup-accent) !important; 
    filter: drop-shadow(0 0 20px var(--popup-accent)) !important;
    animation: iconPulse 2s ease-in-out infinite !important;
}
@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 20px var(--popup-accent)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 30px var(--popup-accent)); transform: scale(1.05); }
}

/* AÇIK TEMA */
.popup-theme-light .popup-container {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}
.popup-theme-light .popup-container::before {
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent) !important;
}
.popup-theme-light .popup-title { color: #1a1a1a !important; }
.popup-theme-light .popup-desc { color: #555 !important; }
.popup-theme-light .popup-list li { 
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%) !important; 
    color: #333 !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}
.popup-theme-light .popup-close-x { color: #333 !important; background: #f0f0f0 !important; }
.popup-theme-light .popup-small-close { color: #666 !important; }
.popup-theme-light .popup-small-close:hover { color: #333 !important; background: rgba(0,0,0,0.05) !important; }

/* CAM TEMA (Glassmorphism) */
.popup-theme-glass .popup-container {
    background: rgba(20, 20, 30, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 0 80px rgba(255, 255, 255, 0.02) !important;
}
.popup-theme-glass .popup-container::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
}
.popup-theme-glass .popup-list li {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* GRADIENT TEMA */
.popup-theme-gradient .popup-container {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 50%, #1a0505 100%) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
}
.popup-theme-gradient .popup-container::before {
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent) !important;
}
.popup-theme-gradient .popup-container::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 50%) !important;
    animation: gradientRotate 15s linear infinite !important;
    pointer-events: none !important;
}
@keyframes gradientRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* NEON TEMA */
.popup-theme-neon .popup-container {
    background: #000000 !important;
    border: 2px solid var(--popup-accent) !important;
    box-shadow: 
        0 0 30px rgba(220, 38, 38, 0.3),
        0 0 60px rgba(220, 38, 38, 0.1),
        inset 0 0 60px rgba(220, 38, 38, 0.05) !important;
    animation: containerSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1), neonBorder 3s ease-in-out infinite !important;
}
@keyframes neonBorder {
    0%, 100% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.3), 0 0 60px rgba(220, 38, 38, 0.1), inset 0 0 60px rgba(220, 38, 38, 0.05); }
    50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.5), 0 0 80px rgba(220, 38, 38, 0.2), inset 0 0 80px rgba(220, 38, 38, 0.08); }
}
.popup-theme-neon .popup-title { 
    text-shadow: 0 0 20px var(--popup-accent), 0 0 40px var(--popup-accent) !important; 
}
.popup-theme-neon .popup-icon svg {
    filter: drop-shadow(0 0 15px var(--popup-accent)) drop-shadow(0 0 30px var(--popup-accent)) !important;
}
.popup-theme-neon .popup-button { 
    background: transparent !important; 
    border: 2px solid var(--popup-accent) !important; 
    box-shadow: 0 0 20px var(--popup-accent), inset 0 0 20px rgba(220, 38, 38, 0.1) !important;
    text-shadow: 0 0 10px #fff !important;
}
.popup-theme-neon .popup-button:hover:not(:disabled) {
    background: var(--popup-accent) !important;
    box-shadow: 0 0 40px var(--popup-accent), 0 0 80px var(--popup-accent) !important;
}
.popup-theme-neon .popup-list li {
    border: 1px solid rgba(220, 38, 38, 0.3) !important;
    background: rgba(220, 38, 38, 0.05) !important;
    box-shadow: inset 0 0 20px rgba(220, 38, 38, 0.05) !important;
}

/* MINIMAL TEMA */
.popup-theme-minimal .popup-container {
    background: #ffffff !important;
    color: #333 !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
}
.popup-theme-minimal .popup-container::before { display: none !important; }
.popup-theme-minimal .popup-title { color: #1a1a1a !important; font-weight: 600 !important; }
.popup-theme-minimal .popup-desc { color: #666 !important; }
.popup-theme-minimal .popup-list li { 
    background: #f8f8f8 !important; 
    color: #444 !important;
    border-radius: 10px !important;
    border: none !important;
}
.popup-theme-minimal .popup-button {
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3) !important;
}
.popup-theme-minimal .popup-close-x { background: #f5f5f5 !important; color: #666 !important; }
.popup-theme-minimal .popup-small-close { color: #999 !important; }

/* MODERN TEMA */
.popup-theme-modern .popup-container {
    background: linear-gradient(180deg, #1e1e2e 0%, #13131f 100%) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
}
.popup-theme-modern .popup-container::before {
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent) !important;
}
.popup-theme-modern .popup-icon svg {
    fill: #a855f7 !important;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)) !important;
}
.popup-theme-modern .popup-button {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4) !important;
}
.popup-theme-modern .popup-button:hover:not(:disabled) {
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5) !important;
}
.popup-theme-modern .popup-list li {
    background: rgba(124, 58, 237, 0.1) !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
}
.popup-theme-modern .popup-list li svg {
    fill: #a855f7 !important;
}


/* ========================================
   BİLEŞENLER
   ======================================== */

/* İKON */
.popup-icon { 
    margin-bottom: 28px !important; 
    position: relative !important;
}
.popup-icon::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 120px !important;
    height: 120px !important;
    background: radial-gradient(circle, var(--popup-accent) 0%, transparent 70%) !important;
    opacity: 0.15 !important;
    border-radius: 50% !important;
    z-index: -1 !important;
}
.popup-icon svg {
    width: 72px !important;
    height: 72px !important;
    fill: var(--popup-accent) !important;
    display: block !important;
    margin: 0 auto !important;
    transition: all 0.3s ease !important;
}
.popup-icon img {
    width: 72px !important;
    height: 72px !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
}

/* BAŞLIK */
.popup-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: inherit !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.popup-theme-light .popup-title,
.popup-theme-minimal .popup-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* AÇIKLAMA */
.popup-desc {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 0 28px 0 !important;
    opacity: 0.8 !important;
    font-weight: 400 !important;
    color: inherit !important;
}

/* LİSTE */
.popup-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px 0 !important;
    text-align: left !important;
}
.popup-list li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    margin-bottom: 10px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: inherit !important;
    position: relative !important;
    overflow: hidden !important;
}
.popup-list li::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 3px !important;
    height: 100% !important;
    background: var(--popup-accent) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}
.popup-list li:last-child { margin-bottom: 0 !important; }
.popup-list li:hover { 
    transform: translateX(8px) !important; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
}
.popup-list li:hover::before {
    opacity: 1 !important;
}
.popup-list li svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--popup-accent) !important;
    flex-shrink: 0 !important;
    filter: drop-shadow(0 0 6px var(--popup-accent)) !important;
}

/* X KAPATMA BUTONU */
.popup-close-x {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: inherit !important;
    font-size: 22px !important;
    line-height: 1 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.6 !important;
    padding: 0 !important;
    backdrop-filter: blur(10px) !important;
}
.popup-close-x:hover { 
    background: rgba(255, 255, 255, 0.15) !important; 
    opacity: 1 !important; 
    transform: rotate(90deg) scale(1.1) !important; 
}

/* BUTON GRUBU */
.popup-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* ANA BUTON */
.popup-button {
    width: 100% !important;
    padding: 18px 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--popup-primary) 0%, var(--popup-accent) 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    text-decoration: none !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3) !important;
    letter-spacing: 0.02em !important;
}
.popup-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s ease !important;
}
.popup-button:hover:not(:disabled) {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4) !important;
}
.popup-button:hover:not(:disabled)::before {
    left: 100% !important;
}
.popup-button:active:not(:disabled) {
    transform: translateY(-1px) !important;
}
.popup-button:disabled {
    background: linear-gradient(135deg, #333 0%, #222 100%) !important;
    color: #666 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}
.popup-button .countdown {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border-radius: 50% !important;
    margin-left: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    animation: countdownPulse 1s ease-in-out infinite !important;
}
@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* İKİNCİL BUTON */
.popup-button.secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}
.popup-button.secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* KÜÇÜK KAPAT LİNKİ */
.popup-small-close {
    display: block !important;
    width: fit-content !important;
    margin: 24px auto 0 auto !important;
    padding: 12px 24px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    text-align: center !important;
}
.popup-small-close:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}


/* ========================================
   TÜRE ÖZEL STİLLER
   ======================================== */

/* NEWSLETTER FORM */
.popup-newsletter-form,
.newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
}
.popup-newsletter-form input[type="email"],
.newsletter-form input[type="email"] {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: inherit !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}
.popup-newsletter-form input[type="email"]:focus,
.newsletter-form input[type="email"]:focus {
    border-color: var(--popup-accent) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.15) !important;
}
.popup-newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

/* BAĞIŞ TUTARLARI */
.popup-donation-amounts,
.donation-amounts {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}
.popup-donation-amount,
.donation-amount {
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: inherit !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.popup-donation-amount:hover,
.donation-amount:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}
.popup-donation-amount.selected,
.donation-amount.selected {
    background: linear-gradient(135deg, var(--popup-primary) 0%, var(--popup-accent) 100%) !important;
    border-color: var(--popup-accent) !important;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3) !important;
    transform: translateY(-2px) scale(1.05) !important;
}

/* ÇEREZ BUTONLARI */
.popup-cookie-buttons,
.cookie-buttons {
    display: flex !important;
    gap: 12px !important;
}
.popup-cookie-buttons .popup-button,
.cookie-buttons .popup-button {
    flex: 1 !important;
}
.cookie-policy-link {
    display: block !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: underline !important;
    transition: color 0.2s ease !important;
}
.cookie-policy-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ========================================
   VIP ŞABLON
   ======================================== */

.popup-theme-vip {
    background: rgba(0, 0, 0, 0.92) !important;
}

.popup-theme-vip .popup-container.vip-container {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    padding: 35px !important;
    max-width: 540px !important;
    text-align: left !important;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(220, 38, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.popup-theme-vip .popup-container::before {
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.4), transparent) !important;
}

/* VIP Close Button */
.vip-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    background: transparent !important;
    border: 2px solid #00d4ff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    opacity: 0.7 !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2) !important;
}
.vip-close svg {
    width: 26px !important;
    height: 26px !important;
    stroke: #00d4ff !important;
    stroke-width: 2 !important;
    fill: none !important;
}
.vip-close:hover {
    opacity: 1 !important;
    transform: rotate(90deg) scale(1.1) !important;
    background: rgba(0, 212, 255, 0.1) !important;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4) !important;
}

/* VIP Header */
.vip-header {
    margin-bottom: 28px !important;
    padding-right: 50px !important;
}
.vip-title {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}
.vip-subtitle {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.vip-desc {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* VIP Boxes Container */
.vip-boxes {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
}

/* VIP Box */
.vip-box {
    flex: 1 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(220, 38, 38, 0.3) !important;
    border-radius: 16px !important;
    padding: 22px !important;
    transition: all 0.3s ease !important;
}
.vip-box:hover {
    border-color: rgba(220, 38, 38, 0.5) !important;
    box-shadow: inset 0 0 30px rgba(220, 38, 38, 0.05) !important;
}
.vip-box-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 16px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* VIP List */
.vip-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.vip-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
}
.vip-bullet {
    width: 8px !important;
    height: 8px !important;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5) !important;
}

/* VIP Right Box */
.vip-box-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* VIP Button */
.vip-button {
    display: block !important;
    width: 100% !important;
    padding: 16px 32px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}
.vip-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s ease !important;
}
.vip-button::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
}
.vip-button:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 
        0 12px 35px rgba(220, 38, 38, 0.5),
        0 0 40px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
.vip-button:hover::before {
    left: 100% !important;
}
.vip-button:active::after {
    width: 300px !important;
    height: 300px !important;
}
.vip-button-subtext {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin: 12px 0 0 0 !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

/* VIP Footer */
.vip-footer {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* VIP Small Close */
.popup-theme-vip .popup-small-close {
    color: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    margin-top: 20px !important;
}
.popup-theme-vip .popup-small-close:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}


/* ========================================
   MOBİL UYUMLULUK
   ======================================== */

@media (max-width: 600px) {
    #popup-overlay { 
        padding: 12px !important; 
    }
    .popup-container { 
        padding: 32px 24px !important; 
        max-width: 100% !important; 
        border-radius: 20px !important; 
    }
    .popup-title { 
        font-size: 24px !important; 
    }
    .popup-icon svg,
    .popup-icon img { 
        width: 56px !important; 
        height: 56px !important; 
    }
    .popup-icon::after {
        width: 90px !important;
        height: 90px !important;
    }
    .popup-button { 
        padding: 16px 22px !important; 
        font-size: 15px !important; 
    }
    .popup-desc { 
        font-size: 14px !important; 
    }
    .popup-list li {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    .popup-cookie-buttons,
    .cookie-buttons {
        flex-direction: column !important;
    }
    
    /* VIP Mobile */
    .popup-theme-vip .popup-container.vip-container {
        padding: 28px 20px !important;
    }
    .vip-title {
        font-size: 28px !important;
    }
    .vip-subtitle {
        font-size: 16px !important;
    }
    .vip-boxes {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .vip-box {
        padding: 18px !important;
    }
    .vip-button {
        padding: 14px 24px !important;
        font-size: 17px !important;
    }
    .vip-close {
        width: 36px !important;
        height: 36px !important;
        top: 14px !important;
        right: 14px !important;
    }
    .vip-close svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* ========================================
   ÖZEL ANİMASYONLAR
   ======================================== */

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glow Pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.5); }
}

/* Rotate Gradient */
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typing Effect için cursor */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Bounce In */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Slide In From Right */
@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Fade In Up */
@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Stagger Animation for List Items */
.popup-list li:nth-child(1) { animation-delay: 0.1s; }
.popup-list li:nth-child(2) { animation-delay: 0.2s; }
.popup-list li:nth-child(3) { animation-delay: 0.3s; }
.popup-list li:nth-child(4) { animation-delay: 0.4s; }
.popup-list li:nth-child(5) { animation-delay: 0.5s; }

.popup-active .popup-list li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

/* VIP List Stagger */
.vip-list li:nth-child(1) { animation-delay: 0.15s; }
.vip-list li:nth-child(2) { animation-delay: 0.25s; }
.vip-list li:nth-child(3) { animation-delay: 0.35s; }
.vip-list li:nth-child(4) { animation-delay: 0.45s; }
.vip-list li:nth-child(5) { animation-delay: 0.55s; }

.popup-active .vip-list li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

/* Button Ripple Effect */
.popup-button:active {
    transform: scale(0.98) !important;
}

/* Premium Glow Border for VIP */
.popup-theme-vip .vip-box {
    position: relative !important;
}
.popup-theme-vip .vip-box::before {
    content: '' !important;
    position: absolute !important;
    top: -1px !important;
    left: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), transparent, rgba(220, 38, 38, 0.5)) !important;
    border-radius: 17px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}
.popup-theme-vip .vip-box:hover::before {
    opacity: 1 !important;
}
