:root {
    --bg: #07090e;
    --surface: rgba(15, 22, 38, 0.65);
    --surface-hover: rgba(24, 34, 58, 0.8);
    --surface-border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(99, 102, 241, 0.5);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --text: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* FAREYİ TAKİP EDEN DINAMIK ISIK */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: width 0.3s, height 0.3s;
}

/* ARKA PLAN BLOB */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.5;
}

.blob { position: absolute; border-radius: 50%; animation: float 18s infinite alternate ease-in-out; }
.b1 { width: 450px; height: 450px; background: #4f46e5; top: -100px; left: -100px; }
.b2 { width: 500px; height: 500px; background: #06b6d4; bottom: -150px; right: -100px; animation-delay: -5s; }
.b3 { width: 350px; height: 350px; background: #8b5cf6; top: 40%; left: 35%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(-40px, 50px) scale(0.95); }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.25s; }
.nav-links a:hover { color: var(--text); }

.nav-btn {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    color: var(--text);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
    backdrop-filter: blur(10px);
}

.nav-btn:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-2px); }

/* HERO & DAKTİLO */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.live-counter-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.counter-text strong { color: #fff; font-weight: 700; }
.counter-divider { color: var(--text-muted); }

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.gradient-text-container { display: inline-block; }

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    color: var(--primary);
    font-weight: 300;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }

.hero-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    display: inline-block;
}

.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6); }

.btn-secondary {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    color: var(--text);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.btn-secondary:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-3px); }

.full { width: 100%; text-align: center; }

/* 3D TILT EFFECT CARD HOVER */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

/* APP PREVIEW / LAUNCHER VITRIN */
.app-preview {
    background: rgba(13, 18, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.15);
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.app-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; }
.d-red { background: #ff5f56; }
.d-yellow { background: #ffbd2e; }
.d-green { background: #27c93f; }

.app-title { margin-left: 14px; font-size: 12px; color: rgba(255, 255, 255, 0.6); font-weight: 500; }

.app-badge {
    margin-left: auto;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.app-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.tab-btn.active { background: #6366f1; color: #fff; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4); }

.app-body { padding: 24px; text-align: left; }
.tab-content { display: none; justify-content: space-between; align-items: center; width: 100%; }
.tab-content.active { display: flex; animation: fadeIn 0.3s ease; }

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

.status-box { display: flex; align-items: center; gap: 16px; }
.status-box h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.status-box p { font-size: 13px; color: var(--text-muted); margin: 0; }

.pulse-icon { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.pulse-icon.green { background: #10b981; box-shadow: 0 0 12px #10b981; }
.pulse-icon.blue { background: #3b82f6; box-shadow: 0 0 12px #3b82f6; }
.pulse-icon.purple { background: #a855f7; box-shadow: 0 0 12px #a855f7; }
.pulse-icon.orange { background: #f97316; box-shadow: 0 0 12px #f97316; }

.stat-badge { padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.stat-badge.success { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.stat-badge.info { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.stat-badge.purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.3); }
.stat-badge.warning { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }

/* SECTIONS & GRID */
.features, .pricing { padding: 90px 20px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.section-header p { color: var(--text-muted); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--surface-border); padding: 32px; border-radius: 16px; backdrop-filter: blur(10px); }
.card-icon { font-size: 28px; margin-bottom: 16px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; }

/* PRICING */
.pricing-badge { background: linear-gradient(90deg, #ff007f, #6366f1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 10px; display: inline-block; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; max-width: 1200px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--surface-border); padding: 36px 28px; border-radius: 24px; position: relative; backdrop-filter: blur(16px); }
.card-tier { font-size: 11px; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 8px; }
.price-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.tier-desc { font-size: 13px; color: var(--text-muted); min-height: 38px; margin-bottom: 20px; }
.amount { font-size: 38px; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.amount span { font-size: 12px; font-weight: 500; color: var(--text-muted); }

.features-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px; }
.features-list li { font-size: 13.5px; color: #cbd5e1; display: flex; align-items: center; gap: 10px; }
.features-list li.disabled { color: #475569; text-decoration: line-through; }
.check { color: #10b981; font-weight: bold; } .cross { color: #ef4444; font-weight: bold; }

.price-card.featured { border: 2px solid transparent; background: linear-gradient(180deg, rgba(99, 102, 241, 0.2), rgba(15, 22, 38, 0.9)), linear-gradient(180deg, #6366f1, #a855f7); background-clip: padding-box, border-box; box-shadow: 0 0 50px rgba(99, 102, 241, 0.3); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #6366f1, #a855f7); color: #fff; font-size: 11px; font-weight: 800; padding: 6px 16px; border-radius: 20px; box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4); white-space: nowrap; }
.glow-tier { color: #a5b4fc; }
.glow-amount { background: linear-gradient(135deg, #ffffff, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glow-btn { background: linear-gradient(90deg, #6366f1, #8b5cf6); box-shadow: 0 4px 25px rgba(139, 92, 246, 0.5); }
.glow-btn:hover { background: linear-gradient(90deg, #4f46e5, #7c3aed); box-shadow: 0 6px 35px rgba(139, 92, 246, 0.7); }

.price-card.vip-card { border-color: rgba(245, 158, 11, 0.3); }
.vip-tier { color: #f59e0b; }
.vip-btn:hover { border-color: #f59e0b; color: #f59e0b; }

/* FOOTER */
footer { background: rgba(7, 9, 14, 0.95); border-top: 1px solid var(--surface-border); padding: 60px 8% 20px; margin-top: 60px; position: relative; z-index: 1; }
.footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 300px; }
.footer-links h4, .footer-contact h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-contact span { color: #fff; font-weight: 600; }
.footer-bottom { text-align: center; border-top: 1px solid var(--surface-border); padding-top: 20px; color: var(--text-muted); font-size: 13px; }

/* SCROLL REVEAL & TOP */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

#scrollTop { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--surface-border); color: var(--text); font-size: 18px; font-weight: bold; cursor: pointer; opacity: 0; pointer-events: none; transition: all 0.3s ease; backdrop-filter: blur(10px); z-index: 100; }
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .price-grid, .grid, .footer-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .nav-links { display: none; }
    .app-body { flex-direction: column; text-align: center; gap: 16px; }
    .mouse-glow { display: none; }
    .tab-btn { font-size: 11px; padding: 8px 4px; }
}

/* ============================================================
   FOXIVO V2 - ULTRA PREMİUM & ÇAKIŞMASIZ FİNAL STİLİ
   ============================================================ */

* {
    box-sizing: border-box;
}

.fox-v2-body {
    background-color: #05070f;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0; 
    padding: 0;
    overflow-x: hidden; 
    position: relative;
    min-height: 100vh;
}

/* Canvas & Grid Arka Plan */
#canvas-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2; pointer-events: none;
}
.neon-grid-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(rgba(168, 85, 247, 0.12) 1px, transparent 1px);
    background-size: 30px 30px; z-index: -1; pointer-events: none;
}

/* Header */
.fox-v2-header {
    padding: 20px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 7, 15, 0.85); 
    backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 100;
}
.h-container { 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.v2-back { 
    color: #94a3b8; text-decoration: none; font-size: 13px; font-weight: 700; 
    transition: 0.3s; display: flex; align-items: center; gap: 6px;
}
.v2-back:hover { color: #38bdf8; transform: translateX(-4px); }

.v2-logo { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 1px; }
.glow-dot { color: #a855f7; text-shadow: 0 0 15px #a855f7; }

.v2-live-tag {
    font-size: 11px; font-weight: 800; color: #34d399; background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3); padding: 6px 14px; border-radius: 20px;
    display: flex; align-items: center; gap: 8px; box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}
.radar-dot { width: 8px; height: 8px; background: #34d399; border-radius: 50%; animation: pulseRadar 1.5s infinite; }
@keyframes pulseRadar { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.3; } }

/* Ana Sayfa Yerleşimi (Grid) */
.fox-v2-wrapper { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px; 
    display: grid; 
    grid-template-columns: 1fr 380px; 
    gap: 32px; 
    align-items: start; 
}

.v2-left { display: flex; flex-direction: column; gap: 24px; }
.v2-right { display: flex; flex-direction: column; position: sticky; top: 100px; }

.v2-badge-pill { font-size: 10px; font-weight: 800; color: #a855f7; background: rgba(168, 85, 247, 0.15); padding: 4px 12px; border-radius: 12px; border: 1px solid rgba(168, 85, 247, 0.3); display: inline-block; }
.v2-intro h1 { font-size: 30px; font-weight: 900; margin: 8px 0 0 0; background: linear-gradient(90deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.v2-intro p { color: #94a3b8; font-size: 14px; margin: 6px 0 0 0; }

/* Paket Kartları */
.v2-cards { display: flex; flex-direction: column; gap: 16px; }

.v2-card {
    background: rgba(15, 23, 42, 0.65); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px;
    padding: 26px; 
    position: relative; 
    cursor: pointer; 
    backdrop-filter: blur(20px);
    overflow: visible; /* Taşmalara izin ver ki şık hap rozet kartın sınırına oturabilsin */
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.v2-card:hover { transform: translateY(-3px); border-color: rgba(168, 85, 247, 0.5); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
.v2-card.active { border: 2px solid #a855f7; background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(15, 23, 42, 0.9)); box-shadow: 0 0 25px rgba(168, 85, 247, 0.25); }
.v2-card.gold-card.active { border-color: #fbbf24; background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(15, 23, 42, 0.9)); box-shadow: 0 0 25px rgba(251, 191, 36, 0.25); }

/* 🌟 KUSURSUZ PREMİUM "FLOATING GLOW PILL" ROZET MİMARİSİ */
.popular-ribbon {
    position: absolute;
    top: -14px; /* Kartın üst çizgisinin üzerine hafifçe taşarak modern durur */
    right: 28px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 10;
    pointer-events: none;
}

.popular-ribbon.gold-bg {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #05070f;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Kartın Üst Kısmı (Fiyat ve Başlık Tamamen Ayrıldı, Sıfır Çakışma) */
.c-head { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 10px; 
}

.c-tag { font-size: 10px; font-weight: 800; color: #38bdf8; letter-spacing: 1px; }
.c-tag.purple { color: #a855f7; }
.c-tag.gold { color: #fbbf24; }

.c-price { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 22px; 
    font-weight: 700; 
    color: #fff; 
    letter-spacing: -0.5px;
}
.purple-txt { color: #a855f7; text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }
.gold-txt { color: #fbbf24; text-shadow: 0 0 10px rgba(251, 191, 36, 0.3); }

.v2-card h3 { font-size: 18px; font-weight: 800; margin: 0; color: #fff; }
.v2-card p { font-size: 13px; color: #94a3b8; margin: 6px 0 14px; line-height: 1.4; }
.c-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.c-badges span { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; color: #cbd5e1; }

/* Alt Tab Paneli */
.v2-tab-box { background: rgba(15, 23, 42, 0.65); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 20px; backdrop-filter: blur(15px); }
.tab-buttons { display: flex; gap: 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 12px; margin-bottom: 16px; overflow-x: auto; }
.t-btn { background: none; border: none; color: #64748b; font-size: 12px; font-weight: 800; padding: 8px 14px; border-radius: 8px; cursor: pointer; transition: 0.2s; white-space: nowrap; }
.t-btn.active { background: rgba(168, 85, 247, 0.2); color: #fff; border: 1px solid rgba(168, 85, 247, 0.4); }

.t-item { display: none; flex-direction: column; gap: 10px; }
.t-item.active { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.feature-item { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.02); padding: 12px; border-radius: 10px; }
.f-icon { font-size: 20px; }
.feature-item h4 { font-size: 13px; font-weight: 700; margin: 0; color: #fff; }
.feature-item p { font-size: 12px; color: #94a3b8; margin: 2px 0 0 0; }

/* Sağ Panel (Mimari Özeti Kartı) */
.v2-summary-card {
    background: linear-gradient(180deg, rgba(18, 24, 42, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
    border: 1px solid rgba(168, 85, 247, 0.35); 
    border-radius: 20px; 
    padding: 26px;
    backdrop-filter: blur(25px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    width: 100%;
}
.sum-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 14px; }
.sum-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin: 0; color: #fff; }
.live-pulse { font-size: 10px; font-weight: 900; color: #34d399; background: rgba(52, 211, 153, 0.15); padding: 4px 10px; border-radius: 8px; border: 1px solid rgba(52, 211, 153, 0.3); }

.sum-details { display: flex; flex-direction: column; gap: 14px; font-size: 13px; margin-bottom: 18px; }
.s-line { display: flex; justify-content: space-between; color: #94a3b8; }
.s-line strong { color: #fff; font-weight: 600; }
.text-green { color: #34d399 !important; font-weight: 700; }

.v2-desc-box { background: rgba(0, 0, 0, 0.4); border-left: 3px solid #a855f7; padding: 12px 14px; border-radius: 8px; font-size: 12px; color: #cbd5e1; line-height: 1.45; margin-bottom: 18px; }
.v2-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin-bottom: 18px; }

.v2-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; background: rgba(168, 85, 247, 0.05); border: 1px solid rgba(168, 85, 247, 0.15); padding: 12px 16px; border-radius: 12px; }
.v2-price-row span { font-size: 11px; color: #94a3b8; font-weight: 800; letter-spacing: 0.5px; }
.v2-big-price { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }

.v2-cta-group { display: flex; flex-direction: column; gap: 10px; }
.v2-btn { display: flex; align-items: center; justify-content: center; padding: 14px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 13px; position: relative; overflow: hidden; transition: 0.2s; }
.btn-neon-discord { background: linear-gradient(135deg, #5865f2 0%, #a855f7 100%); color: #fff; box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3); }
.btn-neon-discord:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(168, 85, 247, 0.5); }
.btn-glass-mail { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); color: #cbd5e1; }
.btn-glass-mail:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.v2-footer-note { margin-top: 14px; text-align: center; font-size: 11px; color: #64748b; line-height: 1.4; }

/* Footer */
.fox-v2-footer { background: #020307; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 60px; position: relative; padding: 40px 0 20px; }
.footer-glow-bar { position: absolute; top: -1px; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #a855f7, #38bdf8, transparent); }
.f-v2-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 30px; }
.f-v2-logo { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.f-v2-logo span { color: #a855f7; }
.f-v2-col p { color: #64748b; font-size: 12px; line-height: 1.5; margin: 0; }
.f-v2-col h4 { font-size: 11px; color: #fff; margin: 0 0 12px 0; letter-spacing: 1px; }
.f-v2-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.f-v2-col a { color: #64748b; text-decoration: none; font-size: 12px; transition: 0.2s; }
.f-v2-col a:hover { color: #a855f7; }

.status-box { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 12px; border-radius: 10px; font-size: 11px; display: flex; flex-direction: column; gap: 6px; }
.sb-line { display: flex; align-items: center; gap: 6px; color: #94a3b8; }
.green-dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; box-shadow: 0 0 8px #34d399; }

.f-v2-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; font-size: 11px; color: #475569; }

/* Mobil Uyum */
@media (max-width: 960px) {
    .fox-v2-wrapper { grid-template-columns: 1fr; }
    .v2-right { position: relative; top: 0; }
    .f-v2-container { grid-template-columns: 1fr; gap: 24px; }
}

/* Tıklama Engellerini Kaldıran Çözüm */
.v2-card {
    cursor: pointer;
    position: relative;
}

.card-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Tıklamanın karta geçmesini sağlar */
}

.v2-card * {
    pointer-events: none; /* İçindeki yazarların tıklamayı yutmasını engeller, tıklama direkt karta gider */
}

/* Footer Sosyal ve Canlı Durum Ek Stilleri */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.soc-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}
.soc-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}
.f-v2-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
}
.status-box-v2 {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
}
.sb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}
.st-badge {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mini-dot {
    width: 5px;
    height: 5px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 6px #34d399;
}
.st-val {
    color: #fff;
    font-weight: 700;
}
.footer-core-badge {
    color: #a855f7 !important;
    font-weight: 700;
}

/* Sağ Özet Kartı Temel Geçişi */
/* Enterprise seçildiğinde sağ özet kartı da sol kart gibi RGB renk değiştirecek */
.v2-summary-card.rgb-enterprise {
    animation: rgbBorder 6s infinite linear !important;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.12), rgba(15, 23, 42, 0.95)) !important;
}

.v2-summary-card.theme-purple {
    border-color: rgba(168, 85, 247, 0.8) !important;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.25) !important;
}

.v2-summary-card.theme-blue {
    border-color: rgba(56, 189, 248, 0.8) !important;
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25) !important;
}
/* FOXIVO r*/
.v2-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    /* Sürekli akıp giden RGB metin efekti */
    animation: rgbGlow 6s infinite linear;
    /* Arkaya hafif neon gölge salınımı */
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
    position: relative;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.v2-logo:hover {
    /* Üstüne gelince sadece neon ışığı şiddetlensin, büyümesin */
    filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.8)) drop-shadow(0 0 10px rgba(51, 204, 255, 0.6));
}

.v2-logo .glow-dot {
    display: inline-block;
    animation: rgbGlow 4s infinite linear;
}

/* Enterprise Ultimate Kartı Kesin Çözüm */
.v2-card.enterprise-ultimate {
    background: linear-gradient(180deg, rgba(18, 24, 42, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%) !important;
    border: 1px solid rgba(168, 85, 247, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(168, 85, 247, 0.2) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.v2-card.enterprise-ultimate:hover {
    transform: translateY(-8px) !important;
    border-color: #ff3366 !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 51, 102, 0.4) !important;
}

/* İçindeki butonu da havalı yapalım */
.v2-card.enterprise-ultimate .btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(255, 51, 102, 0.25)) !important;
    border: 1px solid rgba(168, 85, 247, 0.6) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.v2-card.enterprise-ultimate .btn:hover {
    background: linear-gradient(135deg, #a855f7, #ff3366) !important;
    border-color: transparent !important;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6) !important;
}

/* Gerçek Dönen Çerçeve RGB Kesin Çözüm */
.price-card.vip-card {
    position: relative !important;
    background: linear-gradient(180deg, rgba(18, 24, 42, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%) !important;
    border-radius: 18px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 12px rgba(168, 85, 247, 0.15) !important;
    overflow: hidden !important; /* Dönen kısmın dışarı taşmasını engeller */
    z-index: 1 !important;
}

/* Çerçeveyi zımba gibi döndüren pseudo-element */
.price-card.vip-card::before {
    content: '' !important;
    position: absolute !important;
    /* Karttan daha büyük bir alan verip tam tur döndüreceğiz */
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: conic-gradient(from 0deg, #ff3366, #a855f7, #38bdf8, #22c55e, #ff3366) !important;
    animation: rotateBorder 10.5s linear infinite !important;
    z-index: -2 !important;
    pointer-events: none !important;
}

/* İç arkaplan maskesi (Çerçevenin sadece ince bir kenar kalmasını sağlar) */
.price-card.vip-card::after {
    content: '' !important;
    position: absolute !important;
    inset: 2px !important; /* Çerçevenin kalınlığı (2px) */
    background: linear-gradient(180deg, rgba(18, 24, 42, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%) !important;
    border-radius: 16px !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Tam tur dönme animasyonu */
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* CSS Grid ile Kutuyu ve İçini Kilitleme (Asla Yamulmaz) */
.price-card.vip-card .vip-price-box {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(217, 119, 6, 0.02)) !important;
    border: 1px solid rgba(234, 179, 8, 0.4) !important;
    /* Üst ve alt boşlukları milimetrik olarak eşitliyoruz */
    padding: 18px 20px !important; 
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    margin: 15px 0 !important;
    backdrop-filter: none !important;
}

/* Fiyat ve Para Birimi Kapsülü */
.price-card.vip-card .vip-price-box .price-group,
.price-card.vip-card .vip-price-box .amount-wrapper {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
    grid-column: 1 !important;
}

/* Fiyat Rakamları (Net Altın Rengi) */
.price-card.vip-card .vip-price-box .amount,
.price-card.vip-card .vip-price-box .currency {
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #fef08a, #eab308, #ca8a04) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* "SINIRLI SÜRE!" veya "tek seferlik" ibaresi (Sağ sütun, dikeyde tam ortalı) */
.price-card.vip-card .vip-price-box .period {
    grid-column: 2 !important;
    justify-self: end !important;
    align-self: center !important; /* Sağdaki yazıyı dikeyde kusursuz ortalar */
    font-size: 0.75rem !important;
    color: rgba(254, 240, 138, 0.85) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}


/* "ÖZEL / VIP" Rozeti (Lüks Altın Kapsül Stili) */
.price-card.vip-card .vip-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(217, 119, 6, 0.1)) !important;
    color: #facc15 !important;
    border: 1px solid rgba(234, 179, 8, 0.4) !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 2px 10px rgba(234, 179, 8, 0.1) !important;
}

/* "Enterprise Ultimate" Başlığı (Boyutu bozulmadan şık ve net) */
.price-card.vip-card .vip-title {
    font-size: 1.5rem !important; /* Diğer kartlarla aynı boyut */
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    position: relative !important;
}

