@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&family=Outfit:wght@400;600;800;900&display=swap');

:root {
    --bg-dark: #07080e;
    --bg-card: rgba(18, 19, 32, 0.75);
    --border-card: rgba(236, 72, 153, 0.15);
    --accent-purple: #a855f7;
    --accent-pink: #f43f5e;
    --accent-rose: #fb7185;
    --accent-cyan: #38bdf8;
    --accent-green: #10b981;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    line-height: 1.6;
    box-sizing: border-box;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 63, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
}

/* SİBER YILDIZLAR VE HİLE EFEKTLERİ ARKA PLANI */
#cyber-stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

/* Arka Plan Efekt Işıkları (Gamer Girl Aesthetic Glow) */
.bg-glow-1 {
    position: fixed;
    top: -100px;
    left: 15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.18) 0%, rgba(168, 85, 247, 0.12) 50%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.bg-glow-2 {
    position: fixed;
    bottom: -100px;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(56, 189, 248, 0.1) 50%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.08); }
}

/* Glassmorphism Kartlar */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.glass-card:hover {
    border-color: rgba(244, 63, 94, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px -10px rgba(244, 63, 94, 0.22), 0 0 20px rgba(168, 85, 247, 0.15);
}

/* Ürün Kartı Resim Stili & Lüks Neon Aydınlatma */
.product-image-container {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: radial-gradient(circle at 50% 40%, #15182e 0%, #080911 100%);
    border: 1px solid rgba(244, 63, 94, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(244, 63, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.glass-card:hover .product-image-container {
    border-color: rgba(244, 63, 94, 0.6);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.35), inset 0 0 20px rgba(168, 85, 247, 0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.glass-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1.08) contrast(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 14, 0.95) 0%, rgba(7, 8, 14, 0.15) 50%, transparent 100%);
    pointer-events: none;
}

.product-badge-float {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-category-float {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

/* Gradient Metinler */
.gradient-text {
    background: linear-gradient(135deg, #f43f5e 0%, #fb7185 35%, #c084fc 70%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-title {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Gamer Girl Neon Badge */
.girl-badge {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(244, 63, 94, 0.4);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.25);
}

/* Pulsing Status Dot */
.pulse-dot {
    width: 9px;
    height: 9px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Buton Efektleri */
.btn-primary {
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
    box-shadow: 0 4px 20px -2px rgba(244, 63, 94, 0.5);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 28px rgba(244, 63, 94, 0.75), 0 0 15px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.btn-telegram {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
    transition: all 0.25s ease;
}

.btn-telegram:hover {
    box-shadow: 0 6px 22px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

.btn-buse-chat {
    background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
    transition: all 0.25s ease;
}

.btn-buse-chat:hover {
    box-shadow: 0 6px 22px rgba(244, 63, 94, 0.65);
    transform: translateY(-2px);
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #07080e;
}
::-webkit-scrollbar-thumb {
    background: #23263b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f43f5e;
}

/* Canlı Destek Widget Stilleri */
#live-chat-toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.5), 0 0 20px rgba(168, 85, 247, 0.4);
}

#live-chat-toggle:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 35px rgba(244, 63, 94, 0.7), 0 0 25px rgba(168, 85, 247, 0.6);
}

#live-chat-window {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(244, 63, 94, 0.2);
}

.chat-bubble-user {
    background: linear-gradient(135deg, #f43f5e 0%, #d946ef 100%);
    color: white;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.25);
}

.chat-bubble-buse {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chat-key-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Dil Seçici Açılır Menü */
.lang-dropdown-menu {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top right;
}

.lang-dropdown-menu.hidden {
    display: none;
}

/* ==========================================================================
   ZEPLINZONE ESİNTİLİ MODERN MARKET ARAYÜZÜ STILLERI
   ========================================================================== */

/* Kaydırma Çubuğu Gizleme (Sub-Nav Horizontal Scroll) */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sub-nav-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 63, 94, 0.4) transparent;
}
.sub-nav-scroll::-webkit-scrollbar {
    height: 4px;
}
.sub-nav-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.sub-nav-scroll::-webkit-scrollbar-thumb {
    background: rgba(244, 63, 94, 0.35);
    border-radius: 10px;
}
.sub-nav-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 63, 94, 0.8);
}

/* Kategori Gezinme Okları (Sol / Sağ) */
.cat-nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(18, 20, 36, 0.95);
    border: 1px solid rgba(244, 63, 94, 0.35);
    color: #f43f5e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    user-select: none;
}
.cat-nav-arrow:hover {
    background: linear-gradient(135deg, #f43f5e, #a855f7);
    color: #fff;
    border-color: #f43f5e;
    box-shadow: 0 0 16px rgba(244, 63, 94, 0.5);
    transform: scale(1.08);
}
.cat-nav-arrow:active {
    transform: scale(0.95);
}

/* Alt Navigasyon Kategori Çipleri (Sub-Nav Chips) */
.sub-nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.sub-nav-chip:hover {
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
}

.sub-nav-chip.active {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    border: 1px solid #f43f5e;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(244, 63, 94, 0.35), inset 0 0 10px rgba(244, 63, 94, 0.2);
}

.cat-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    margin-left: 4px;
}
.sub-nav-chip.active .cat-count-badge {
    background: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.6);
}

/* Katalog İçi Hızlı Kategori Hapları */
.quick-catalog-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.quick-catalog-pill:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.35);
    color: #ffffff;
}
.quick-catalog-pill.active {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.3), rgba(168, 85, 247, 0.3));
    border-color: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.35);
}

/* Widescreen Hero Banner Carousel */
.hero-slider-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, #15172b 0%, #090a14 100%);
    border: 1px solid rgba(244, 63, 94, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(244, 63, 94, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Slider Noktaları (Dots) */
.slider-dot {
    height: 8px;
    width: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    width: 32px;
    background: linear-gradient(90deg, #f43f5e, #c084fc);
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.7);
}

/* Header Entegre Arama Çubuğu */
#header-search-input:focus {
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.25), inset 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Ürün Kartı ZeplinZone Hover Parıltısı */
.glass-card {
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(168, 85, 247, 0.1), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

.glass-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.6), rgba(168, 85, 247, 0.4), transparent 80%);
}


/* ==========================================================================
   INTERACTIVE CHEAT FINDER WIZARD STYLES
   ========================================================================== */
.wizard-step-card {
    background: rgba(14, 16, 28, 0.85);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-card:hover {
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.15);
}

.wizard-chip {
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.wizard-chip:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.wizard-chip.active {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border: 1px solid #f43f5e;
    color: #fff;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.4), inset 0 0 12px rgba(244, 63, 94, 0.25);
}

/* ==========================================================================
   IN-GAME PREVIEW MODAL & TABS
   ========================================================================== */
.modal-tab-btn {
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.modal-tab-btn:hover {
    color: #f1f5f9;
}

.modal-tab-btn.active {
    color: #f43f5e;
    border-bottom-color: #f43f5e;
    text-shadow: 0 0 12px rgba(244, 63, 94, 0.5);
}

.preview-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SES EFEKTI AÇ/KAPA BUTONU (SOUND TOGGLE)
   ========================================================================== */
.sound-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sound-btn:hover {
    background: rgba(244, 63, 94, 0.2);
    border-color: rgba(244, 63, 94, 0.5);
    color: #fff;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

.sound-btn.muted {
    color: #64748b;
    border-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   BEFORE / AFTER SLIDER (Madde 31)
   ========================================================================== */
.before-after-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.before-after-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-img-wrap.after {
    width: 50%;
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid #f43f5e;
    box-shadow: 4px 0 15px rgba(244, 63, 94, 0.5);
}

.before-after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f43f5e, #a855f7);
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    z-index: 10;
    cursor: ew-resize;
    pointer-events: none;
}

.before-after-tag {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 5;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.before-after-tag.tag-before {
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.before-after-tag.tag-after {
    left: 16px;
    background: rgba(244, 63, 94, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   ESP / AIMBOT SIMULATOR (Madde 21)
   ========================================================================== */
.esp-canvas-container {
    position: relative;
    width: 100%;
    height: 360px;
    background: radial-gradient(circle at 50% 50%, #101222 0%, #05060c 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

#esp-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.esp-control-card {
    background: rgba(13, 15, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
}

.esp-color-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.esp-color-dot.active {
    transform: scale(1.15);
    border-color: #fff;
    box-shadow: 0 0 12px currentColor;
}

/* ==========================================================================
   TYPEAHEAD ARAMA AÇILIR LİSTESİ (Madde 23)
   ========================================================================== */
.typeahead-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: rgba(11, 12, 22, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(244, 63, 94, 0.35);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px rgba(244, 63, 94, 0.2);
    z-index: 100;
    max-height: 380px;
    overflow-y: auto;
}

.typeahead-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.15s ease;
}

.typeahead-item:last-child {
    border-bottom: none;
}

.typeahead-item:hover {
    background: rgba(244, 63, 94, 0.15);
}

/* ==========================================================================
   GÖRÜNÜM MODU: KOMPAKT LİSTE (Madde 24)
   ========================================================================== */
.products-list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.products-list-view .glass-card {
    flex-direction: row !important;
    align-items: center !important;
    padding: 14px 20px !important;
}

.products-list-view .product-image-container {
    width: 90px !important;
    height: 70px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
}

.products-list-view .product-badge-float,
.products-list-view .product-category-float {
    display: none !important;
}

/* ==========================================================================
   FAVORİLER (WISHLIST) & ROZETLER (Maddeler 27, 40)
   ========================================================================== */
.wishlist-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.wishlist-btn:hover {
    color: #f43f5e;
    border-color: #f43f5e;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #f43f5e;
    background: rgba(244, 63, 94, 0.25);
    border-color: #f43f5e;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.4);
}

.micro-badge-hot {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: badgePulse 2s infinite;
}

.micro-badge-vip {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.micro-badge-new {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(239, 68, 68, 0); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px rgba(239, 68, 68, 0.6); }
}

/* ==========================================================================
   MOBİL SABİT ALT MENÜ (Madde 29)
   ========================================================================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 8, 14, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(244, 63, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 12px;
    z-index: 45;
}

.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-nav-btn:hover,
.mobile-nav-btn.active {
    color: #f43f5e;
}

.mobile-nav-btn i {
    font-size: 16px;
}

/* ==========================================================================
   BİLDİRİM MERKEZİ (Madde 57) & CANLI IŞIK
   ========================================================================== */
.notif-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 320px;
    background: rgba(11, 12, 22, 0.98);
    border: 1px solid rgba(244, 63, 94, 0.35);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 12px;
    transition: background 0.15s ease;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.anydesk-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.anydesk-live-badge .pulse-ring {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.anydesk-live-badge .pulse-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ==========================================================================
   AVATAR SEÇİCİ & TEKNİK KARTLAR (Maddeler 56, 71-80)
   ========================================================================== */
.avatar-grid-item {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-grid-item:hover {
    transform: scale(1.1);
    background: rgba(244, 63, 94, 0.2);
}

.avatar-grid-item.selected {
    border-color: #f43f5e;
    background: rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
}

.tech-tool-tab-btn {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tech-tool-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.tech-tool-tab-btn.active {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.3), rgba(168, 85, 247, 0.3));
    border-color: #f43f5e;
    color: #fff;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.3);
}

.terminal-code-box {
    background: #05060c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Space Grotesk', monospace;
    font-size: 12px;
    color: #38bdf8;
    position: relative;
}

/* GAMER AVATAR SEÇİCİ KARTLARI */
.avatar-pick-card {
    position: relative;
    border-radius: 16px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.avatar-pick-card:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(244, 63, 94, 0.6);
    background: rgba(244, 63, 94, 0.12);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.avatar-pick-card.selected {
    border-color: #f43f5e;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.3), rgba(168, 85, 247, 0.3));
    box-shadow: 0 0 16px rgba(244, 63, 94, 0.55), inset 0 0 10px rgba(244, 63, 94, 0.25);
}

.avatar-pick-card .avatar-check-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f43f5e;
    color: white;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.avatar-pick-card.selected .avatar-check-badge {
    display: flex;
}

/* MOBİL HİZALAMA VE SIFIR KAYMA GARANTİSİ */
*, *::before, *::after {
    box-sizing: border-box;
}

@media (max-width: 640px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
    }
    #main-navbar {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .sound-btn {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        font-size: 11px !important;
    }
    .sub-nav-chip {
        padding: 6px 12px !important;
        font-size: 11px !important;
        gap: 6px !important;
    }
    .cat-count-badge {
        font-size: 9px !important;
        height: 16px !important;
        min-width: 16px !important;
        padding: 0 4px !important;
    }
}

/* ==========================================================================
   CANLI DESTEK WIDGETI MOBİL KONUMLANDIRMA (Alttaki Barı ve Buse Butonunu Kapatmaması İçin)
   ========================================================================== */
#live-chat-container {
    transition: bottom 0.25s ease, right 0.25s ease;
}

@media (max-width: 768px) {
    #live-chat-container {
        bottom: 80px !important;
        right: 14px !important;
    }
    #live-chat-window {
        bottom: 72px !important;
        right: 0 !important;
        width: calc(100vw - 28px) !important;
        max-width: 380px !important;
        max-height: calc(100vh - 165px) !important;
    }
}

/* ==========================================================================
   ÇİFT PARA BİRİMİ (TRY & USD) CANLI FİYAT TASARIMI
   ========================================================================== */
.usd-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    font-weight: 800;
    font-size: 11px;
    padding: 1.5px 7px;
    border-radius: 6px;
    letter-spacing: -0.2px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.usd-badge:hover {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.price-container-dual {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}



