/* --- 1. HEADER BİLEŞENİ --- */
.site-header {
    background-color: rgba(11, 13, 20, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.25s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.brand-logo, .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    user-select: none;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand-logo:hover, .footer-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -2px;
    color: #A855F7;
    text-shadow: 0 0 16px rgba(168, 85, 247, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-14deg);
    line-height: 1;
    margin-right: 2px;
}

.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: #FFFFFF;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.logo-text span {
    color: #A855F7;
    font-weight: 900;
}

/* Arama Kutusu */
.header-search {
    flex: 1;
    max-width: 480px;
    position: relative;
    z-index: 105;
}

.header-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.header-search input {
    width: 100%;
    background-color: #111624;
    border: 1px solid #1E2638;
    border-radius: 22px;
    padding: 10px 40px 10px 42px;
    color: #FFFFFF;
    font-size: 0.88rem;
    outline: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-search input:focus {
    background-color: #131A2B;
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.35), inset 0 0 10px rgba(139, 92, 246, 0.1);
}

.header-search input:focus + .search-icon {
    color: #A855F7;
}

.header-search input::placeholder {
    color: #64748B;
}

/* ✕ Hızlı Temizleme Butonu */
.search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94A3B8;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-clear-btn:hover {
    background: #EF4444;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.search-clear-btn.visible {
    display: flex;
}

/* ==========================================================================
   SPOTLIGHT CANLI ARAMA DROPDOWN
   ========================================================================== */

.search-spotlight-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-height: 480px;
    background: linear-gradient(180deg, #131826 0%, #0B0E17 100%);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 14px;
    animation: searchDropdownFade 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-spotlight-dropdown.active {
    display: flex;
}

@keyframes searchDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spotlight Başlıkları */
.spotlight-group-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8E9BB5;
    margin: 8px 6px 6px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spotlight-group-title i {
    color: var(--accent-purple, #8B5CF6);
    font-size: 0.8rem;
}

/* Spotlight Sonuç Maddesi */
.spotlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.18s ease;
    margin-bottom: 4px;
    cursor: pointer;
}

.spotlight-item:hover, .spotlight-item.keyboard-selected {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateX(3px);
}

.spotlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--spotlight-accent, #8B5CF6);
    flex-shrink: 0;
}

.spotlight-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spotlight-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--spotlight-accent, #38BDF8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotlight-title {
    font-size: 0.84rem;
    font-weight: 750;
    color: #FFFFFF;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotlight-desc {
    font-size: 0.7rem;
    color: #8E9BB5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotlight-arrow {
    font-size: 0.72rem;
    color: #64748B;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.spotlight-item:hover .spotlight-arrow {
    color: #A855F7;
    transform: translateX(2px);
}

/* Popüler Aramalar Hap Butonları */
.spotlight-trending-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 6px 12px 6px;
}

.trending-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    color: #CBD5E1;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trending-pill-btn:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: #8B5CF6;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.trending-pill-btn i {
    color: #EC4899;
    font-size: 0.75rem;
}

/* Spotlight Alt Çubuk */
.spotlight-footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 8px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #64748B;
}

.spotlight-btn-all {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #C084FC;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.spotlight-btn-all:hover {
    background: #8B5CF6;
    color: #FFFFFF;
}

/* Boş Durum */
.spotlight-empty-state {
    padding: 24px 16px;
    text-align: center;
    color: #8E9BB5;
}

.spotlight-empty-state i {
    font-size: 2rem;
    color: #64748B;
    margin-bottom: 8px;
    display: block;
}

.spotlight-empty-state strong {
    color: #FFFFFF;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Sağ Araçlar & Butonlar */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
}

.btn-text:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-solid-purple {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-purple);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
    transition: all 0.2s;
}

.btn-solid-purple:hover {
    background-color: var(--accent-purple-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.5);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 7px 11px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-card);
    transition: all 0.2s;
}

.lang-switch:hover {
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.lang-switch .arrow {
    font-size: 0.65rem;
}

/* Mobil Header Butonları */
.btn-mobile-icon {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #121622;
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-mobile-icon:hover, .btn-mobile-icon:active {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.btn-mobile-menu {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1A1F2E, #121622);
    border: 1px solid #2A334A;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-mobile-menu:hover, .btn-mobile-menu:active {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

/* Header Mobil Responsive Kuralı */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    .header-inner {
        gap: 10px;
    }
    .logo-icon {
        font-size: 0.95rem;
        padding: 3px 7px;
    }
    .logo-text {
        font-size: 1.15rem;
    }
    .header-search {
        display: none; /* Mobilde arama drawer ve quick bar içine alındı */
    }
    .header-actions .btn-text,
    .header-actions .btn-solid-purple,
    .header-actions .lang-switch {
        display: none;
    }
    .btn-mobile-icon,
    .btn-mobile-menu {
        display: flex;
    }
}

/* --- 2. HERO SECTION & SLIDER --- */
.hero-section {
    margin-top: 20px;
    margin-bottom: 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 16px;
    align-items: stretch;
}

/* Sol Slider Ana Kartı */
.hero-slider-card {
    background: radial-gradient(circle at 75% 50%, #151a28 0%, #0E121D 100%);
    border: 1px solid #1E2536;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 440px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Ambient Glow Efekti */
.slider-glow {
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 180%;
    background: radial-gradient(circle at 35% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.5s ease;
}

/* Slide Kapsayıcısı */
.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

/* Tekil Slayt */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 38px 46px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.98);
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 3;
}

/* Slider Sol İçerik */
.slider-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 4;
}

/* Marka Rozeti (Brand Sub Badge) */
.brand-sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(18, 22, 34, 0.85);
    border: 1px solid #283248;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.white-txt { color: #FFFFFF; }
.red-txt { color: #ED1C24; }
.green-txt { color: #76B900; }
.yellow-txt { color: #FEDB00; }
.blue-txt { color: #38BDF8; }
.orange-txt { color: #FF6A00; }

.brand-sub-badge.badge-amd { border-color: rgba(237, 28, 36, 0.4); }
.brand-sub-badge.badge-nvidia { border-color: rgba(118, 185, 0, 0.4); }
.brand-sub-badge.badge-asus { border-color: rgba(237, 28, 36, 0.4); }
.brand-sub-badge.badge-corsair { border-color: rgba(254, 219, 0, 0.4); }
.brand-sub-badge.badge-msi { border-color: rgba(56, 189, 248, 0.4); }
.brand-sub-badge.badge-steelseries { border-color: rgba(255, 106, 0, 0.4); }

/* Slider Başlık ve Açıklama */
.slider-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.slider-tagline {
    font-size: 0.95rem;
    color: #94A3B8;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Özellik Maddeleri */
.slider-spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.slider-spec-list li {
    font-size: 0.85rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.slider-spec-list li i {
    color: var(--accent-purple);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

/* Slider Detay Butonları */
.btn-detail-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-detail-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    filter: brightness(1.1);
}

.btn-detail-red.btn-nvidia {
    background: linear-gradient(135deg, #76B900, #4D7C0F);
    box-shadow: 0 4px 15px rgba(118, 185, 0, 0.3);
}
.btn-detail-red.btn-nvidia:hover {
    box-shadow: 0 6px 20px rgba(118, 185, 0, 0.5);
}

.btn-detail-red.btn-asus {
    background: linear-gradient(135deg, #E11D48, #9F1239);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}
.btn-detail-red.btn-asus:hover {
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
}

.btn-detail-red.btn-yellow {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0D14;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-detail-red.btn-yellow:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-detail-red.btn-blue {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.btn-detail-red.btn-blue:hover {
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-detail-red.btn-orange {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}
.btn-detail-red.btn-orange:hover {
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

/* Slider Sağ Ürün Görseli */
.slider-product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 320px;
    z-index: 4;
}

.slider-product-img img {
    max-height: 290px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.8));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide:hover .slider-product-img img {
    transform: translateY(-6px) scale(1.03);
}

/* Navigasyon Okları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background-color: rgba(14, 18, 29, 0.85);
    border: 1px solid #283248;
    color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 20;
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.slider-nav:hover {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.slider-nav.prev-btn { left: 14px; }
.slider-nav.next-btn { right: 14px; }

/* Nokta İndikatörleri */
.slider-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    background-color: rgba(10, 13, 20, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #334155;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator:hover {
    background-color: #64748B;
}

.indicator.active {
    width: 24px;
    border-radius: 6px;
    background-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

/* Hero Slider & Partner Grid Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-slider-card {
        min-height: 400px;
    }
    .hero-slides-wrapper {
        min-height: 400px;
    }
    .hero-slide {
        grid-template-columns: 1.15fr 1fr;
        padding: 28px 24px;
        gap: 16px;
    }
    .slider-title {
        font-size: 1.65rem;
    }
    .hero-quick-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 8px;
        padding: 4px 2px 10px 2px;
        margin-top: 4px;
    }
    .hero-quick-grid::-webkit-scrollbar {
        display: none;
    }
    .quick-banner-card {
        flex: 0 0 auto;
        min-width: 140px;
        min-height: 60px;
        padding: 7px 10px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 14px;
        margin-bottom: 20px;
    }
    .hero-slider-card {
        min-height: 460px;
        border-radius: 12px;
    }
    .hero-slides-wrapper {
        min-height: 460px;
    }
    .hero-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
        padding: 22px 16px 44px 16px;
        gap: 12px;
        align-items: center;
        justify-items: center;
    }
    .slider-content {
        align-items: center;
        width: 100%;
    }
    .brand-sub-badge {
        margin-bottom: 8px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    /* Ürün Görseli Mobilde GÖRÜNÜR ve ÖNE ÇIKARILDI */
    .slider-product-img {
        display: flex !important;
        height: 165px;
        max-height: 165px;
        margin: 4px 0 10px 0;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .slider-product-img img {
        max-height: 155px;
        max-width: 85%;
        object-fit: contain;
        filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.85));
        animation: floatHeroMob 3.5s ease-in-out infinite alternate;
    }
    @keyframes floatHeroMob {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-6px); }
    }
    .slider-title {
        font-size: 1.45rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    .slider-tagline {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }
    .slider-spec-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 10px;
        margin-bottom: 16px;
    }
    .slider-spec-list li {
        font-size: 0.72rem;
        background: rgba(255, 255, 255, 0.05);
        padding: 4px 10px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        gap: 6px;
    }
    .btn-detail-red {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    .slider-nav {
        display: none; /* Mobilde touch/swipe kullanılır */
    }
    .slider-indicators {
        bottom: 12px;
        padding: 4px 12px;
    }
}

/* Sağ Hızlı Vitrin & Kılavuz Grid Kartları (Masaüstü Standart) */
.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
    height: 100%;
}

.quick-banner-card {
    background: linear-gradient(145deg, rgba(22, 28, 44, 0.75), rgba(12, 15, 25, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.quick-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--card-accent, #8B5CF6);
    opacity: 0.8;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.quick-banner-card:hover {
    border-color: var(--card-accent, #8B5CF6);
    background: linear-gradient(145deg, rgba(28, 36, 56, 0.9), rgba(15, 19, 32, 0.98));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 16px var(--card-glow, rgba(139, 92, 246, 0.2));
}

.quick-banner-card:hover::before {
    width: 4px;
    opacity: 1;
}

.qb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.qb-icon {
    font-size: 0.95rem;
    color: var(--card-accent, #8B5CF6);
    transition: transform 0.25s ease;
}

.quick-banner-card:hover .qb-icon {
    transform: scale(1.15);
}

.qb-badge {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 4px;
    background: var(--badge-bg, rgba(139, 92, 246, 0.15));
    color: var(--card-accent, #8B5CF6);
    border: 1px solid var(--badge-border, rgba(139, 92, 246, 0.3));
}

.qb-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qb-sub {
    font-size: 0.62rem;
    font-weight: 600;
    color: #8E9BB5;
    line-height: 1.2;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Renk Temaları */
.quick-banner-card.card-esport {
    --card-accent: #06B6D4;
    --card-glow: rgba(6, 182, 212, 0.25);
    --badge-bg: rgba(6, 182, 212, 0.15);
    --badge-border: rgba(6, 182, 212, 0.35);
}

.quick-banner-card.card-gta {
    --card-accent: #EC4899;
    --card-glow: rgba(236, 72, 153, 0.25);
    --badge-bg: rgba(236, 72, 153, 0.15);
    --badge-border: rgba(236, 72, 153, 0.35);
}

.quick-banner-card.card-cyberpunk {
    --card-accent: #FACC15;
    --card-glow: rgba(250, 204, 21, 0.25);
    --badge-bg: rgba(250, 204, 21, 0.15);
    --badge-border: rgba(250, 204, 21, 0.35);
}

.quick-banner-card.card-elden {
    --card-accent: #FB923C;
    --card-glow: rgba(251, 146, 60, 0.25);
    --badge-bg: rgba(251, 146, 60, 0.15);
    --badge-border: rgba(251, 146, 60, 0.35);
}

.quick-banner-card.card-monitor {
    --card-accent: #38BDF8;
    --card-glow: rgba(56, 189, 248, 0.25);
    --badge-bg: rgba(56, 189, 248, 0.15);
    --badge-border: rgba(56, 189, 248, 0.35);
}

.quick-banner-card.card-gear {
    --card-accent: #A855F7;
    --card-glow: rgba(168, 85, 247, 0.25);
    --badge-bg: rgba(168, 85, 247, 0.15);
    --badge-border: rgba(168, 85, 247, 0.35);
}

.quick-banner-card.card-calc {
    --card-accent: #10B981;
    --card-glow: rgba(16, 185, 129, 0.25);
    --badge-bg: rgba(16, 185, 129, 0.15);
    --badge-border: rgba(16, 185, 129, 0.35);
}

.quick-banner-card.card-panel {
    --card-accent: #F59E0B;
    --card-glow: rgba(245, 158, 11, 0.25);
    --badge-bg: rgba(245, 158, 11, 0.15);
    --badge-border: rgba(245, 158, 11, 0.35);
}

.quick-banner-card.card-audio {
    --card-accent: #818CF8;
    --card-glow: rgba(129, 140, 248, 0.25);
    --badge-bg: rgba(129, 140, 248, 0.15);
    --badge-border: rgba(129, 140, 248, 0.35);
}

.quick-banner-card.card-fame {
    --card-accent: #EAB308;
    --card-glow: rgba(234, 179, 8, 0.25);
    --badge-bg: rgba(234, 179, 8, 0.15);
    --badge-border: rgba(234, 179, 8, 0.35);
}
/* --- 3. ANA HUB GEÇİŞ BUTONLARI --- */
.main-hub-section {
    margin-bottom: 30px;
}

.hub-container {
    background-color: #0e121b;
    border: 1px solid #1e2536;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    position: relative;
}

/* Alt Mor Çizgi Efekti */
.hub-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.hub-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.15s;
}

.hub-card:hover {
    background-color: #161c2b;
    transform: translateY(-1px);
}

.hub-icon {
    font-size: 1.6rem;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-text {
    display: flex;
    flex-direction: column;
}

.hub-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.hub-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hub-divider {
    width: 1px;
    height: 36px;
    background-color: #232a3d;
}

/* --- 4. ÖNE ÇIKAN MARKALAR BANDI --- */
.featured-brands-section {
    margin-bottom: 35px;
}

.section-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-title h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.see-all-link {
    color: var(--accent-purple);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.see-all-link:hover {
    opacity: 0.8;
}

.brands-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.brands-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 6px 0;
    animation: brandsMarquee 32s linear infinite;
}

.brands-carousel-wrapper:hover .brands-track {
    animation-play-state: paused;
}

@keyframes brandsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 6px));
    }
}

.brand-item {
    flex: 0 0 auto;
    min-width: 125px;
    height: 64px;
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.brand-item:hover {
    border-color: var(--accent-purple);
    background-color: #181E2E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.2);
}

.brand-item .b-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-item .b-slogan {
    font-size: 0.5rem;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Marka Özel Renkleri */
.brand-item.msi { color: #D13639; }
.brand-item.msi .b-name { color: #FFFFFF; }
.brand-item.nvidia { color: #76B900; }
.brand-item.nvidia .b-name { color: #76B900; }
.brand-item.amd .b-name { color: #ED1C24; }
.brand-item.intel .b-name { color: #38BDF8; }
.brand-item.corsair .b-name { color: #F59E0B; }
.brand-item.playstation .b-name { color: #38BDF8; }
.brand-item.steam .b-name { color: #66C0F4; }
.brand-item.riot .b-name { color: #D13639; }

.brand-arrow {
    background: rgba(18, 22, 34, 0.85);
    border: 1px solid #1E2536;
    border-radius: 8px;
    color: var(--accent-purple);
    font-size: 0.95rem;
    cursor: pointer;
    width: 36px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
    flex-shrink: 0;
}

.brand-arrow:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.brand-prev { margin-right: 10px; }
.brand-next { margin-left: 10px; }

/* Hub & Brands Karuseli Mobilde Uyum */
@media (max-width: 768px) {
    .main-hub-section {
        margin-bottom: 20px;
    }
    .hub-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
        background: #0E121B;
        border-radius: 12px;
    }
    .hub-divider {
        display: none;
    }
    .hub-card {
        padding: 12px 14px;
        background: rgba(18, 22, 34, 0.85);
        border: 1px solid #1E2536;
        border-radius: 8px;
        justify-content: flex-start;
        transition: all 0.15s ease;
    }
    .hub-card:active {
        transform: scale(0.98);
        background: #161C2B;
        border-color: var(--accent-purple);
    }
    .hub-icon {
        font-size: 1.4rem;
    }
    .hub-title {
        font-size: 0.9rem;
    }
    .hub-sub {
        font-size: 0.72rem;
    }
    .brands-carousel-wrapper {
        position: relative;
        padding: 0;
    }
    .brands-ticker-container {
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    .brands-track {
        display: flex;
        gap: 10px;
        width: max-content;
        padding: 4px 0;
        animation: brandsMarquee 26s linear infinite;
    }
    .brand-item {
        flex: 0 0 auto;
        min-width: 115px;
        height: 58px;
        padding: 5px 10px;
    }
    .brand-arrow {
        display: none;
    }
}
/* --- 5. ANA GÖVDE GRID YERLEŞİMİ --- */
.main-body-section {
    margin-bottom: 50px;
}

.main-layout-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr; /* Sol Ürünler/VS 2.3 - Sağ Sidebar 1 */
    gap: 24px;
    align-items: start;
}

/* 5.1 YENİ ÜRÜNLER KARTLARI */
.products-section {
    margin-bottom: 35px;
}

/* --- YENİ ÜRÜNLER GRID DÜZENİ (3 SÜTUN X 2 SATIR) --- */
.products-section {
    margin-bottom: 35px;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 6 yerine 3 sütun */
    gap: 16px;
}

.product-card {
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
    min-width: 0; /* Taşan metinlerin gridi patlatmasını önler */
}

.product-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.card-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.badge-new {
    background-color: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.4);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-score {
    background-color: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.p-card-thumb {
    width: 100%;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #161D2E 0%, #0B0E17 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.p-card-thumb img {
    max-height: 112px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .p-card-thumb img {
    transform: scale(1.06) translateY(-2px);
}

.p-card-brand {
    font-size: 0.7rem;
    color: var(--accent-purple);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.p-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 8px;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-card-specs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.p-card-specs-list span {
    font-size: 0.72rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-card-specs-list span i {
    color: var(--accent-green);
    font-size: 0.65rem;
}

.p-card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.p-target-segment {
    font-size: 0.7rem;
    font-weight: 700;
    color: #38BDF8;
    background-color: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

.p-card-actions {
    display: grid;
    grid-template-columns: 1fr 38px;
    gap: 8px;
    border-top: 1px solid #1E2536;
    padding-top: 10px;
}

.btn-card-inspect {
    background-color: #1E2538;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    border-radius: 6px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-card-inspect:hover {
    background-color: var(--accent-purple);
}

.btn-card-compare-icon {
    background-color: #161B29;
    border: 1px solid #232A3D;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-card-compare-icon:hover {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    border-color: var(--accent-purple);
}

/* Tablet & Küçük Ekran Uyumu */
@media (max-width: 1100px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* 5.2 POPÜLER KARŞILAŞTIRMALAR */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vs-card {
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.vs-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.vs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    color: #CBD5E1;
    margin-bottom: 10px;
}

.vs-badge {
    color: var(--accent-purple);
    font-weight: 900;
    font-size: 0.6rem;
    padding: 0 2px;
}

.vs-thumbs-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #0A0D14;
    padding: 8px 4px;
    border-radius: 6px;
}

.vs-thumb-item img {
    height: 45px;
    object-fit: contain;
}

/* 5.3 SAĞ SIDEBAR (SON HABERLER) */
.sidebar-wrapper {
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 10px;
    padding: 16px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 6px;
    background-color: #0B0E17;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.news-item:hover {
    border-color: var(--accent-purple);
    background-color: #161B29;
}

.news-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    flex: 1;
}

.news-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #64748B;
    font-weight: 500;
}

.news-comments i {
    margin-right: 2px;
}

/* 6. FOOTER */
.site-footer {
    background-color: #080A0F;
    border-top: 1px solid #1E2536;
    padding: 24px 0;
    margin-top: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748B;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Mobilde ve Tablette Uyum */
@media (max-width: 1200px) {
    .product-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-layout-grid {
        grid-template-columns: 1fr;
    }
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-cards-grid {
        grid-template-columns: 1fr;
    }
}/* --- GİRİŞ / KAYIT (AUTH) SAYFASI --- */
.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #161b2a 0%, var(--bg-main) 100%);
    padding: 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-logo {
    margin-bottom: 24px;
}

.auth-card {
    width: 100%;
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-step {
    display: none;
}

.auth-step.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 6px;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap i {
    position: absolute;
    left: 14px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.input-icon-wrap input {
    width: 100%;
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    color: #FFFFFF;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-icon-wrap input:focus {
    border-color: var(--accent-purple);
}

.btn-auth-submit {
    width: 100%;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    transition: background-color 0.2s;
}

.btn-auth-submit:hover {
    background-color: var(--accent-purple-hover);
}

/* OTP (6 Haneli Kod) Kutuları */
.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 20px 0;
}

.otp-field {
    width: 48px;
    height: 52px;
    background-color: #0A0D14;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-purple);
    outline: none;
}

.otp-field:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25);
}

.auth-resend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 16px;
}

.btn-resend {
    background: transparent;
    border: none;
    color: var(--accent-purple);
    font-weight: 600;
    cursor: pointer;
}

.btn-back-step {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin: 16px auto 0 auto;
    cursor: pointer;
}

.btn-back-step:hover {
    color: #FFFFFF;
}

.auth-footer-text {
    margin-top: 18px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.auth-footer-text a {
    color: var(--text-muted);
    text-decoration: underline;
}
/* Kayıt Sayfası Özel Checkbox & Alt Link */
.form-checkbox-group {
    margin-bottom: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.custom-checkbox input {
    margin-top: 2px;
    accent-color: var(--accent-purple);
}

.auth-switch-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 14px;
}

.auth-switch-link a {
    color: var(--accent-purple);
    font-weight: 600;
}

.auth-switch-link a:hover {
    text-decoration: underline;
}

/* Auth Mesaj Kutuları (Hata & Başarı) */
.auth-msg-box {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    animation: fadeInAuth 0.3s ease;
}

.auth-msg-box.error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #F87171;
}

.auth-msg-box.success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ADE80;
}

.otp-field.error {
    border-color: #EF4444 !important;
    animation: otpShake 0.4s ease;
}

@keyframes otpShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

@keyframes fadeInAuth {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Kullanıcı Profil Menüsü */
.user-profile-menu {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}

.user-profile-btn:hover {
    border-color: var(--accent-purple);
    background-color: #181E2E;
}

.user-avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #FFFFFF;
}

.user-name-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
}

.user-arrow {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 10px;
    width: 220px;
    padding: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    flex-direction: column;
    padding: 4px 6px;
}

.user-dropdown-header strong {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.user-dropdown-header span {
    font-size: 0.72rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-divider {
    border: none;
    border-top: 1px solid #1E2536;
    margin: 8px 0;
}

.user-dropdown-item {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    color: #CBD5E1;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}

.user-dropdown-item:hover {
    background-color: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}
/* --- 7. ÜRÜN TANITIMI KATALOG SAYFASI --- */
.page-top-banner {
    background-color: #0E121B;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0 28px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

.breadcrumb .active {
    color: var(--accent-purple);
    font-weight: 600;
}

.page-main-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.page-sub-heading {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Grid Düzeni (Sol Sidebar + Sağ Katalog) */
.catalog-main {
    margin-bottom: 60px;
}

.catalog-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

/* Sol Filtreleme Alanı */
.filter-box {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.filter-header h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-clear-filter {
    background: transparent;
    border: none;
    color: var(--accent-purple);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 22px;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 10px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    gap: 8px;
}

.filter-item input {
    accent-color: var(--accent-purple);
}

.filter-item .f-count {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-dim);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs input {
    width: 100%;
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 10px;
    color: #FFFFFF;
    font-size: 0.8rem;
    outline: none;
}

.btn-apply-filters {
    width: 100%;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-apply-filters:hover {
    background-color: var(--accent-purple-hover);
}

/* Sağ Ürün Listesi ve Toolbar */
.catalog-toolbar {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-result-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sort-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.custom-select {
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #FFFFFF;
    padding: 6px 12px;
    font-size: 0.8rem;
    outline: none;
}

/* Hızlı Kategori Filtre Butonları (Pills) */
.catalog-category-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 14px;
    margin-bottom: 24px;
    scrollbar-width: thin;
}

.catalog-category-pills::-webkit-scrollbar {
    height: 4px;
}

.catalog-category-pills::-webkit-scrollbar-thumb {
    background: #232A3D;
    border-radius: 4px;
}

.cat-pill-tab {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.cat-pill-tab i {
    font-size: 0.85rem;
    color: var(--accent-purple);
}

.cat-pill-tab:hover {
    border-color: var(--accent-purple);
    color: #FFFFFF;
    background-color: #181E2E;
}

.cat-pill-tab.active {
    background: linear-gradient(135deg, var(--accent-purple), #9333EA);
    border-color: var(--accent-purple);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.cat-pill-tab.active i {
    color: #FFFFFF;
}

/* Boş Durum Kutusu (Empty State) */
.empty-catalog-box {
    grid-column: 1 / -1;
    background-color: #121622;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-catalog-box .empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.empty-catalog-box h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.empty-catalog-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 20px;
}

.btn-reset-filters {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-reset-filters:hover {
    background-color: var(--accent-purple-hover);
}

/* Bildirim Toast'ı */
.hg-toast-notify {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #161C2C;
    border: 1px solid var(--accent-purple);
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hg-toast-notify.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hg-toast-notify .toast-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hg-toast-notify .toast-icon {
    font-size: 1.4rem;
    color: var(--accent-green);
}

.hg-toast-notify .toast-text {
    display: flex;
    flex-direction: column;
}

.hg-toast-notify .toast-text strong {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.hg-toast-notify .toast-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hg-toast-notify .toast-btn {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-left: 8px;
}

/* Sayfalama (Pagination) */
.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.pag-btn {
    min-width: 40px;
    height: 40px;
    background-color: #121622;
    border: 1px solid #1E2536;
    border-radius: 8px;
    color: #CBD5E1;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: all 0.2s ease;
}

.pag-btn:hover:not(.disabled) {
    border-color: var(--accent-purple);
    color: #FFFFFF;
    background-color: #181E2E;
    transform: translateY(-2px);
}

.pag-btn.active {
    background: linear-gradient(135deg, var(--accent-purple), #9333EA);
    border-color: var(--accent-purple);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.pag-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: transparent;
}

.pag-dots {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0 6px;
}

/* Mobilde Uyum */
@media (max-width: 992px) {
    .catalog-grid-layout {
        grid-template-columns: 1fr;
    }
}
/* --- 8. ÜRÜN DETAY SAYFASI STİLLERİ --- */
.product-detail-container {
    margin-bottom: 70px;
}

.product-hero-card {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

/* Galeri */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image-wrap {
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.main-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumbs .thumb {
    width: 70px;
    height: 70px;
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.gallery-thumbs .thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    border-color: var(--accent-purple);
}

.video-thumb {
    flex-direction: column;
    color: var(--accent-purple);
    font-size: 0.75rem;
    font-weight: 700;
    gap: 4px;
}

/* Sağ Panel Özet */
.summary-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.brand-tag {
    background-color: #1E2538;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.rating-stars {
    color: #F59E0B;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars span {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 4px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 20px;
}

.editor-score-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.score-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-info strong {
    color: #FFFFFF;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.score-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

.quick-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.quick-specs-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-specs-list li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

.quick-specs-list li strong {
    color: #FFFFFF;
}

.summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-title {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: block;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
}

.price-amount .currency {
    font-size: 1.1rem;
}

.summary-actions {
    display: flex;
    gap: 10px;
}

.btn-action-compare {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-action-compare:hover {
    background-color: var(--accent-purple-hover);
}

.btn-action-fav {
    background-color: #1E2538;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-action-fav:hover {
    color: #EF4444;
    border-color: #EF4444;
}

/* Tabs & Sekmeli İçerik */
.product-tabs-wrapper {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 50px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 24px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active, .tab-btn:hover {
    background-color: #1E2538;
    color: #FFFFFF;
}

.tab-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.tab-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Artı ve Eksi Kutuları */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.pros-box, .cons-box {
    padding: 20px;
    border-radius: 8px;
}

.pros-box {
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons-box {
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-box h4 {
    color: var(--accent-green);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cons-box h4 {
    color: #EF4444;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pros-box ul, .cons-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-box li, .cons-box li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Teknik Özellikler Tablosu */
.specs-table-section {
    margin-bottom: 36px;
}

.specs-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-detail-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-detail-table th {
    width: 30%;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
    text-align: left;
    background-color: #0E121B;
}

.specs-detail-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #FFFFFF;
}

/* Video Alanı */
.video-review-section {
    margin-bottom: 36px;
}

.video-frame-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Yorumlar & Form */
.comments-section {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.comment-item {
    background-color: #0E121B;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-user .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-user strong {
    font-size: 0.85rem;
    color: #FFFFFF;
    display: block;
}

.comment-date {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.user-stars {
    color: #F59E0B;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.comment-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.add-comment-card {
    background-color: #0E121B;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.add-comment-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
}

/* Ürün Detay Mobilde Uyum */
@media (max-width: 992px) {
    .product-hero-card {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 24px;
    }
    .main-image-wrap {
        height: 280px;
    }
    .product-title {
        font-size: 1.35rem;
    }
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .summary-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .summary-actions {
        width: 100%;
    }
    .btn-action-compare {
        flex: 1;
        justify-content: center;
    }
    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scrollbar-width: none;
    }
    .tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 0.82rem;
    }
}

/* --- 9. KARŞILAŞTIRMA MOTORU (HUB 2) STİLLERİ --- */
.compare-container {
    margin-bottom: 70px;
}

/* Kategori Hap Butonları */
.compare-cat-selector {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

.cat-pill-btn {
    background-color: #121622;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.cat-pill-btn:hover {
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.cat-pill-btn.active {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

/* Slot Grid'i */
.compare-slots-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.compare-card {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 380px;
    justify-content: space-between;
}

.btn-remove-slot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #1E2538;
    border: none;
    color: var(--text-dim);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-remove-slot:hover {
    background-color: #EF4444;
    color: #FFFFFF;
}

.cmp-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cmp-thumb img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
}

.cmp-brand {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-purple);
    text-transform: uppercase;
}

.cmp-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 4px 0 10px 0;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cmp-score {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.badge-score {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.cmp-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 14px;
}

.btn-cmp-detail {
    width: 100%;
    background-color: #1E2538;
    color: #FFFFFF;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-cmp-detail:hover {
    background-color: var(--accent-purple);
}

/* VS Ayraç Dairesi */
.vs-divider-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 36px;
    height: 36px;
    background-color: #0E121B;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--accent-purple);
    font-weight: 900;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Boş Ekleme Slotu */
.compare-card.empty-slot {
    border: 2px dashed #2A334A;
    background-color: rgba(18, 22, 34, 0.4);
    justify-content: center;
    gap: 12px;
}

.empty-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1E2538;
    color: var(--accent-purple);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-slot h4 {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.empty-slot p {
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 80%;
}

.btn-add-product {
    background-color: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-product:hover {
    background-color: var(--accent-purple);
    color: #FFFFFF;
}

/* Kıyaslama Tablosu */
.compare-table-wrapper {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 50px;
}

.compare-table-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.comparison-matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-matrix-table th {
    padding: 14px 16px;
    background-color: #0E121B;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.comparison-matrix-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #CBD5E1;
    border-bottom: 1px solid var(--border-color);
}

.comparison-matrix-table .feature-name {
    font-weight: 600;
    color: var(--text-muted);
    width: 25%;
    background-color: rgba(14, 18, 27, 0.4);
}

.section-row td {
    background-color: #0A0D14;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
}

.section-row td i {
    margin-right: 6px;
}

.highlight-winner {
    color: #22C55E !important;
    font-weight: 700;
    background-color: rgba(34, 197, 94, 0.05);
}

.winner-icon {
    font-size: 0.75rem;
    color: #F59E0B;
    margin-left: 6px;
}

/* Popüler Eşleşmeler Grid */
.popular-vs-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.vs-matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vs-match-card {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-match-card:hover {
    border-color: var(--accent-purple);
    background-color: #181E2E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.match-vs-tag {
    color: var(--accent-purple);
    font-size: 0.75rem;
    font-weight: 900;
    background: rgba(139, 92, 246, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.match-cat {
    font-size: 0.72rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- YENİ KARŞILAŞTIRMA MODÜLLERİ --- */

/* 1. Benchmark & FPS Performans Grafikleri */
.cmp-section-block {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 35px;
}

.cmp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #1E2536;
    padding-bottom: 14px;
}

.cmp-section-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmp-section-header h2 i {
    color: var(--accent-purple);
}

.cmp-legend-row {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cmp-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.cmp-legend-dot.slot1 { background: #8B5CF6; }
.cmp-legend-dot.slot2 { background: #ED1C24; }
.cmp-legend-dot.slot3 { background: #38BDF8; }

.cmp-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cmp-chart-box {
    background-color: #0E121B;
    border: 1px solid #1A2030;
    border-radius: 10px;
    padding: 18px 20px;
}

.cmp-chart-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}

.cmp-chart-title .unit-tag {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 600;
}

.cmp-bar-row {
    margin-bottom: 12px;
}

.cmp-bar-row:last-child {
    margin-bottom: 0;
}

.cmp-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.cmp-bar-labels .prod-label { color: #CBD5E1; }
.cmp-bar-labels .score-label { color: #FFFFFF; font-weight: 800; }

.cmp-bar-track {
    width: 100%;
    height: 10px;
    background-color: #171E2D;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.cmp-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-bar-fill.slot1 { background: linear-gradient(90deg, #7C3AED, #8B5CF6); }
.cmp-bar-fill.slot2 { background: linear-gradient(90deg, #DC2626, #ED1C24); }
.cmp-bar-fill.slot3 { background: linear-gradient(90deg, #0284C7, #38BDF8); }

/* 2. Artılar & Eksiler Matrisi */
.cmp-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.cmp-pros-cons-card {
    background-color: #0E121B;
    border: 1px solid #1A2030;
    border-radius: 10px;
    padding: 20px;
}

.cmp-pc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1A2030;
}

.cmp-pc-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #141A29;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.cmp-pc-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cmp-pc-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
}

.cmp-pc-group-title {
    font-size: 0.8rem;
    font-weight: 800;
    margin: 12px 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmp-pc-group-title.pros { color: var(--accent-green); }
.cmp-pc-group-title.cons { color: #EF4444; }

.cmp-pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cmp-pc-list li {
    font-size: 0.8rem;
    color: #94A3B8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.cmp-pc-list li i.fa-check { color: var(--accent-green); margin-top: 3px; }
.cmp-pc-list li i.fa-xmark { color: #EF4444; margin-top: 3px; }

/* 3. Editoryal Karar (Verdict) */
.cmp-verdict-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(14, 18, 27, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cmp-verdict-badge {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), #9333EA);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
}

.cmp-verdict-badge span { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }
.cmp-verdict-badge strong { font-size: 1.7rem; font-weight: 900; line-height: 1; }

.cmp-verdict-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cmp-verdict-text p {
    font-size: 0.85rem;
    color: #CBD5E1;
    line-height: 1.5;
}

/* 4. Canlı Topluluk Oylaması (Community Poll) */
.cmp-poll-box {
    background-color: #0E121B;
    border: 1px solid #1A2030;
    border-radius: 10px;
    padding: 22px;
    margin-top: 15px;
}

.cmp-poll-header {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cmp-poll-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cmp-poll-btn {
    background-color: #161D2E;
    border: 1px solid #232A3D;
    border-radius: 8px;
    padding: 14px 18px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    transition: all 0.2s;
}

.cmp-poll-btn:hover {
    border-color: var(--accent-purple);
    background-color: #1A2338;
}

.cmp-poll-btn.voted {
    border-color: var(--accent-green);
    background-color: rgba(34, 197, 94, 0.1);
}

.cmp-poll-btn-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.cmp-poll-pct {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent-purple);
}

/* 5. Sıkça Sorulan Sorular (FAQ) */
.cmp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cmp-faq-item {
    background-color: #0E121B;
    border: 1px solid #1A2030;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.cmp-faq-item.active {
    border-color: var(--accent-purple);
}

.cmp-faq-question {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.cmp-faq-question i {
    color: var(--accent-purple);
    transition: transform 0.3s;
}

.cmp-faq-item.active .cmp-faq-question i {
    transform: rotate(180deg);
}

.cmp-faq-answer {
    padding: 0 20px 16px 20px;
    font-size: 0.82rem;
    color: #94A3B8;
    line-height: 1.5;
    display: none;
}

.cmp-faq-item.active .cmp-faq-answer {
    display: block;
}

/* --- CANLI OYUN FPS HESAPLAYICI & SİMÜLASYON MOTORU --- */
.fps-calculator-section {
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, rgba(14, 18, 27, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.1);
    scroll-margin-top: 100px;
}

.calc-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 26px auto;
}

.calc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10B981;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.calc-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.calc-sub {
    font-size: 0.84rem;
    color: #94A3B8;
    line-height: 1.45;
}

.calc-card-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.calc-controls {
    background: #0B0E17;
    border: 1px solid #1E2536;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.calc-field label i {
    color: #10B981;
}

.calc-select {
    background: #141A29;
    border: 1px solid #28334A;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 12px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-select:focus, .calc-select:hover {
    border-color: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.calc-toggles-row {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.calc-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #CBD5E1;
    cursor: pointer;
}

.calc-toggle input[type="checkbox"] {
    accent-color: #10B981;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-calculate-fps {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-top: 4px;
}

.btn-calculate-fps:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.calc-results-display {
    background: linear-gradient(145deg, #101625, #0B0E17);
    border: 1px solid #232D42;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-top {
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.res-sub {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8E9BB5;
    letter-spacing: 0.5px;
}

.res-fps-number {
    font-size: 3.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 4px 0 6px 0;
    text-shadow: 0 0 24px rgba(16, 185, 129, 0.4);
}

.fps-unit {
    font-size: 1.3rem;
    font-weight: 800;
    color: #10B981;
}

.res-badge-status {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    letter-spacing: 0.5px;
}

.fps-meter-bar-wrap {
    margin: 16px 0;
}

.fps-meter-bar {
    width: 100%;
    height: 10px;
    background: #141A28;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #263147;
}

.fps-meter-fill {
    height: 100%;
    background: linear-gradient(to right, #F59E0B 0%, #10B981 70%, #06B6D4 100%);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.fps-meter-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.64rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 4px;
}

.res-details-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.res-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #94A3B8;
}

.res-detail-item strong {
    color: #FFFFFF;
    font-weight: 700;
}

.res-verdict {
    font-size: 0.76rem;
    color: #CBD5E1;
    line-height: 1.4;
    background: rgba(16, 185, 129, 0.08);
    border-left: 3px solid #10B981;
    padding: 8px 10px;
    border-radius: 0 6px 6px 0;
}

@media (max-width: 768px) {
    .calc-card-grid {
        grid-template-columns: 1fr;
    }
    .fps-calculator-section {
        padding: 20px 14px;
    }
}

/* 6. Ürün Seçim Modalı (Product Picker Modal) */
.cmp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cmp-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cmp-modal-box {
    background-color: #121622;
    border: 1px solid #232A3D;
    border-radius: 14px;
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-modal-overlay.open .cmp-modal-box {
    transform: scale(1);
}

.cmp-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #1E2536;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cmp-modal-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: #FFFFFF;
}

.cmp-modal-search {
    padding: 16px 24px;
    border-bottom: 1px solid #1E2536;
}

.cmp-modal-search input {
    width: 100%;
    background-color: #0E121B;
    border: 1px solid #232A3D;
    border-radius: 8px;
    padding: 10px 16px;
    color: #FFFFFF;
    font-size: 0.85rem;
    outline: none;
}

.cmp-modal-search input:focus {
    border-color: var(--accent-purple);
}

.cmp-modal-body {
    padding: 16px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmp-modal-item {
    background-color: #0E121B;
    border: 1px solid #1A2030;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.cmp-modal-item:hover {
    border-color: var(--accent-purple);
    background-color: #161D2E;
    transform: translateX(4px);
}

.cmp-modal-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cmp-modal-item-thumb {
    width: 44px;
    height: 44px;
    background: #141A29;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.cmp-modal-item-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cmp-modal-item-info strong {
    font-size: 0.85rem;
    color: #FFFFFF;
    display: block;
}

.cmp-modal-item-info span {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.btn-select-modal-item {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .compare-slots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vs-divider-box {
        margin: 10px 0;
    }
    .vs-matches-grid {
        grid-template-columns: 1fr;
    }
    .cmp-chart-grid {
        grid-template-columns: 1fr;
    }
    .cmp-pros-cons-grid {
        grid-template-columns: 1fr;
    }
    .cmp-poll-options {
        grid-template-columns: 1fr;
    }
    .cmp-verdict-box {
        flex-direction: column;
        text-align: center;
    }
}
/* --- 10. OYUN DÜNYASI (HUB 3) STİLLERİ --- */
.game-world-main {
    margin-bottom: 70px;
}

.game-filter-bar {
    margin-bottom: 24px;
}

.game-cat-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.pill-btn {
    background-color: #121622;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.pill-btn:hover {
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.pill-btn.active {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

/* Manşet Grid */
.game-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.featured-game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    border: 1px solid var(--border-color);
}

.featured-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-game-card:hover img {
    transform: scale(1.03);
}

.main-feature {
    height: 420px;
}

.featured-sub-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-feature {
    height: 202px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(11, 13, 20, 0.95) 0%, rgba(11, 13, 20, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-feature .card-overlay {
    padding: 16px;
}

.tag-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.bg-red { background-color: #EF4444; }
.bg-purple { background-color: var(--accent-purple); }
.bg-green { background-color: #10B981; }

.card-overlay h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
}

.card-overlay h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

.card-overlay p {
    font-size: 0.85rem;
    color: #CBD5E1;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* İçerik Düzeni (Veritabanı + Sidebar) */
.game-content-layout {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 24px;
    align-items: start;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.game-box-card {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.game-box-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.game-box-thumb {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.game-box-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-score-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--accent-purple);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
}

.game-box-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-platforms {
    font-size: 0.7rem;
    color: var(--accent-purple);
    font-weight: 700;
    margin-bottom: 4px;
}

.game-title {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.game-desc {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.related-hardware-badge {
    background-color: rgba(139, 92, 246, 0.08);
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.75rem;
    color: #CBD5E1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-hardware-badge i {
    color: #F59E0B;
}

.related-hardware-badge strong {
    color: #FFFFFF;
}

.btn-game-view {
    margin-top: auto;
    background-color: #1E2538;
    color: #FFFFFF;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-game-view:hover {
    background-color: var(--accent-purple);
}

/* Çıkış Takvimi Sidebar */
.sidebar-block {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.release-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.release-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background-color: #0E121B;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.release-item:hover {
    border-color: var(--accent-purple);
}

.release-date {
    background-color: var(--accent-purple);
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.release-date .day {
    font-size: 0.95rem;
    font-weight: 800;
}

.release-date .month {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
}

.release-info strong {
    font-size: 0.8rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 2px;
}

.release-info span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.sidebar-ad-box {
    min-height: 250px;
}

/* --- OYUN DETAY SAYFASI ÖZEL STİLLERİ --- */
.game-detail-container {
    margin-bottom: 70px;
}

.game-hero-banner {
    position: relative;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.game-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0B0D14 0%, rgba(11, 13, 20, 0.7) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.game-genre-tag {
    font-size: 0.75rem;
    color: var(--accent-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 4px 0 8px 0;
}

.game-stats-bar {
    display: flex;
    gap: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.game-layout-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Sistem Gereksinimleri Tabları / Kutuları */
.sys-req-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-box {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.req-header {
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 800;
}

.min-header { background-color: #1A202C; color: #CBD5E1; }
.rec-header { background-color: rgba(34, 197, 94, 0.15); color: var(--accent-green); border-bottom: 1px solid rgba(34, 197, 94, 0.3); }
.ultra-header { background-color: rgba(139, 92, 246, 0.15); color: var(--accent-purple); border-bottom: 1px solid rgba(139, 92, 246, 0.3); }

.req-list {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.req-list li {
    font-size: 0.85rem;
    color: #CBD5E1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.req-list li strong {
    color: #FFFFFF;
    width: 140px;
    display: inline-block;
}

/* Sağ Eşleşen Donanımlar */
.matched-box {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.matched-title {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.matched-sub {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.matched-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.matched-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #0E121B;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.2s;
}

.matched-item:hover {
    border-color: var(--accent-purple);
    transform: translateX(3px);
}

.m-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.m-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.m-info {
    display: flex;
    flex-direction: column;
}

.m-cat {
    font-size: 0.65rem;
    color: var(--accent-purple);
    font-weight: 700;
}

.m-info strong {
    font-size: 0.8rem;
    color: #FFFFFF;
}

.m-price {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-top: 2px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .game-featured-grid,
    .game-content-layout,
    .game-layout-grid {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
}
/* --- 11. MARKALAR HUB STİLLERİ --- */
.brands-hub-container {
    margin-bottom: 70px;
}

.alphabet-filter {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

.alpha-btn {
    background-color: #121622;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    min-width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.alpha-btn:hover {
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.alpha-btn.active {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

.brands-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.brand-hub-card {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: all 0.2s ease;
}

.brand-hub-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.brand-logo-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.brand-big-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.brand-slogan {
    font-size: 0.6rem;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 2px;
}

.nvidia-text { color: #76B900 !important; }
.amd-text { color: #ED1C24 !important; }
.logi-text { color: #00A8E8 !important; }
.razer-text { color: #22C55E !important; }
.intel-text { color: #38BDF8 !important; }

.brand-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    margin-bottom: 10px;
}

.brand-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.brand-tags span {
    background-color: #0E121B;
    color: var(--text-dim);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Marka Profil Detay Header */
.brand-profile-container {
    margin-bottom: 70px;
}

.brand-header-profile {
    background-color: #121622;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.brand-badge-box h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
}

.brand-badge-box span {
    font-size: 0.75rem;
    color: var(--accent-purple);
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-quick-stats {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.brand-quick-stats strong {
    color: #FFFFFF;
}

.brand-profile-right p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 2px solid var(--accent-purple);
    padding-left: 18px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .brands-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-header-profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .brands-directory-grid {
        grid-template-columns: 1fr;
    }
}

/* --- MARKA DETAY ÖZEL TEMA VARYASYONLARI --- */
.theme-nvidia .brand-badge-box h2 { color: #76B900; }
.theme-nvidia .brand-badge-box span { color: #A3E635; }
.theme-nvidia .brand-profile-right p { border-left-color: #76B900; }

.theme-amd .brand-badge-box h2 { color: #ED1C24; }
.theme-amd .brand-badge-box span { color: #F87171; }
.theme-amd .brand-profile-right p { border-left-color: #ED1C24; }

.theme-intel .brand-badge-box h2 { color: #38BDF8; }
.theme-intel .brand-badge-box span { color: #0071C5; }
.theme-intel .brand-profile-right p { border-left-color: #38BDF8; }

.theme-msi .brand-badge-box h2 { color: #FFFFFF; }
.theme-msi .brand-badge-box h2 i { color: #D13639; }
.theme-msi .brand-badge-box span { color: #D13639; }
.theme-msi .brand-profile-right p { border-left-color: #D13639; }

.theme-corsair .brand-badge-box h2 { color: #FEDB00; }
.theme-corsair .brand-badge-box span { color: #F59E0B; }
.theme-corsair .brand-profile-right p { border-left-color: #FEDB00; }

.theme-steam .brand-badge-box h2 { color: #66C0F4; }
.theme-steam .brand-badge-box span { color: #C7D5E0; }
.theme-steam .brand-profile-right p { border-left-color: #66C0F4; }

.theme-peak .brand-badge-box h2 { color: #FFFFFF; }
.theme-peak .brand-badge-box span { color: #A78BFA; }
.theme-peak .brand-profile-right p { border-left-color: #8B5CF6; }

.theme-playstation .brand-badge-box h2 { color: #38BDF8; }
.theme-playstation .brand-badge-box span { color: #00439C; }
.theme-playstation .brand-profile-right p { border-left-color: #00439C; }

.theme-riot .brand-badge-box h2 { color: #D13639; }
.theme-riot .brand-badge-box span { color: #F87171; }
.theme-riot .brand-profile-right p { border-left-color: #D13639; }

/* ==========================================================================
   --- 12. MOBİL WEB MASTERCLASS MİMARİSİ (DRAWER, BOTTOM NAV, APP BAR) ---
   ========================================================================== */

/* 12.1 Mobil Navigasyon Çekmecesi (Drawer) & Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 7, 12, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #121624 0%, #0B0E17 100%);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
    transform: translateX(-320px);
}

/* Drawer Üst Bar */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-close-drawer {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-close-drawer:hover, .btn-close-drawer:active {
    background-color: #EF4444;
    border-color: #EF4444;
}

/* Drawer Arama */
.drawer-search-box {
    padding: 14px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-search-box i {
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.drawer-search-box input {
    width: 100%;
    background-color: #0A0D14;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px 10px 38px;
    color: #FFFFFF;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.drawer-search-box input:focus {
    border-color: var(--accent-purple);
}

/* Drawer Kullanıcı Kartı */
.drawer-user-card {
    margin: 14px 20px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(18, 22, 34, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), #C084FC);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.drawer-user-text strong {
    font-size: 0.85rem;
    color: #FFFFFF;
    display: block;
}

.drawer-user-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.drawer-auth-buttons {
    display: flex;
    gap: 8px;
}

.drawer-auth-buttons a {
    flex: 1;
    text-align: center;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
}

.btn-drawer-login {
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-drawer-signup {
    background-color: var(--accent-purple);
    color: #FFFFFF;
}

/* Drawer Menü Linkleri */
.drawer-nav-list {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    flex: 1;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #CBD5E1;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.drawer-nav-item i.nav-icon {
    width: 22px;
    color: var(--accent-purple);
    font-size: 1rem;
    margin-right: 10px;
    text-align: center;
}

.drawer-nav-item .nav-text-wrap {
    display: flex;
    align-items: center;
}

.drawer-nav-item i.nav-arrow {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.drawer-nav-item:hover, .drawer-nav-item:active {
    background-color: rgba(139, 92, 246, 0.12);
    color: #FFFFFF;
}

.drawer-nav-item.active {
    background-color: var(--accent-purple);
    color: #FFFFFF;
}

.drawer-nav-item.active i.nav-icon,
.drawer-nav-item.active i.nav-arrow {
    color: #FFFFFF;
}

.drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* 12.2 Sabit Mobil Alt Navigasyon Barı (Mobile Bottom Bar) */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(11, 14, 23, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 0 6px;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.mobile-nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #717F9A;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-tab i {
    font-size: 1.15rem;
    transition: transform 0.2s;
}

.mobile-nav-tab:active {
    transform: scale(0.92);
}

.mobile-nav-tab.active {
    color: var(--accent-purple);
}

.mobile-nav-tab.active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

/* 12.3 Genel Mobil Sayfa İyileştirmeleri */
@media (max-width: 768px) {
    body {
        padding-bottom: 74px; /* Alt bar için boşluk */
    }
    .mobile-bottom-nav {
        display: block;
    }
    .container {
        padding: 0 14px;
    }
    .page-main-heading {
        font-size: 1.4rem;
    }
    .page-sub-heading {
        font-size: 0.8rem;
    }
    .catalog-category-pills {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .catalog-category-pills::-webkit-scrollbar {
        display: none;
    }
    .cat-pill-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 8px 14px;
        font-size: 0.78rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   13. OYUN DÜNYASI & REHBER SAYFALARI (TAM TASARIMSAL OPTİMİZASYON)
   ========================================================================== */

.game-detail-container {
    margin-bottom: 50px;
}

/* 13.1 Hero Banner */
.game-hero-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #131A2B 0%, #0A0D15 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 200px;
    display: flex;
    align-items: center;
}

.game-hero-banner > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: blur(1px);
    z-index: 1;
}

.game-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px 34px;
    background: linear-gradient(90deg, rgba(10, 13, 21, 0.96) 0%, rgba(10, 13, 21, 0.8) 65%, rgba(10, 13, 21, 0.4) 100%);
}

.game-genre-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.game-main-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.game-stats-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: #94A3B8;
    font-weight: 600;
}

.game-stats-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* 13.2 Ana Yerleşim Grid (Desktop 2 Sütun: minmax(0, 1fr) ve 340px) */
.game-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.game-specs-column {
    min-width: 0;
    width: 100%;
}

.game-specs-column .section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 13.3 Sistem Gereksinim Kartları & Tablar */
.sys-req-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.req-box {
    background: #0E121B;
    border: 1px solid #1E2536;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.req-box:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.req-header {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #141A28;
}

.req-header h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

.req-list {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    color: #94A3B8;
    line-height: 1.5;
}

.req-list li {
    position: relative;
    padding-left: 14px;
}

.req-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 900;
}

.req-list li strong {
    color: #F1F5F9;
    font-weight: 700;
}

.req-list code {
    background: #161C2B;
    border: 1px solid #28334A;
    padding: 2px 6px;
    border-radius: 4px;
    color: #38BDF8;
    font-family: monospace;
    font-size: 0.78rem;
}

/* 13.4 Sağ Sidebar & Saf UI Donanım Kartları (Fotoğrafsız, Ultra Şık) */
.game-sidebar-column, .game-matched-hardware {
    min-width: 0;
    width: 100%;
}

.sidebar-box, .matched-box {
    background: #0E121B;
    border: 1px solid #1E2536;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 90px;
}

.box-title, .matched-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.matched-sub {
    font-size: 0.76rem;
    color: #8E9BB5;
    margin-bottom: 16px;
    line-height: 1.4;
}

.rec-hardware-list, .matched-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Ultra Şık Donanım Kartı (Fotoğrafsız, İkonlu & Rozetli) */
.rec-hw-card, .matched-item {
    background: linear-gradient(145deg, #131826, #0B0E17);
    border: 1px solid #1E2536;
    border-radius: 9px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rec-hw-card:hover, .matched-item:hover {
    border-color: var(--card-accent, var(--accent-purple));
    background: linear-gradient(145deg, #182033, #0E121E);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hw-icon-box, .m-thumb-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--card-accent, #8B5CF6);
    flex-shrink: 0;
}

.hw-info, .m-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hw-type, .m-cat {
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--card-accent, #38BDF8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hw-name, .m-info strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hw-reason, .m-price {
    font-size: 0.68rem;
    color: #8E9BB5;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hw-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--card-accent, var(--accent-purple));
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    text-decoration: none;
}

/* ==========================================================================
   14. ULTRA PREMİUM SİTE FOOTER (MODERN 4 SÜTUNLU TASARIM)
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, #0C0F18 0%, #06080E 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px 0 0 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
    opacity: 0.6;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
    gap: 36px;
    padding-bottom: 45px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.brand-col .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-col.brand-col .logo-icon {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -2px;
    color: #A855F7;
    text-shadow: 0 0 14px rgba(168, 85, 247, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-14deg);
    line-height: 1;
    margin-right: 2px;
}

.footer-col.brand-col .logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.footer-col.brand-col .logo-text span {
    color: #A855F7;
    font-weight: 900;
}

.footer-desc {
    font-size: 0.82rem;
    color: #8E9BB5;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8E9BB5;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 22px;
    height: 2px;
    background: #8B5CF6;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links-list li a {
    color: #8E9BB5;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.footer-links-list li a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-links-list li a::before {
    content: '›';
    font-size: 1rem;
    color: #475569;
    transition: color 0.2s ease;
}

.footer-links-list li a:hover::before {
    color: #8B5CF6;
}

.footer-newsletter-box p {
    font-size: 0.78rem;
    color: #8E9BB5;
    line-height: 1.45;
    margin-bottom: 12px;
}

.footer-input-group {
    display: flex;
    background: #111624;
    border: 1px solid #1E2538;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.footer-input-group:focus-within {
    border-color: #8B5CF6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
}

.footer-input-group input {
    background: transparent;
    border: none;
    padding: 9px 12px;
    color: #FFFFFF;
    font-size: 0.78rem;
    outline: none;
    flex: 1;
    min-width: 0;
}

.footer-input-group input::placeholder {
    color: #64748B;
}

.footer-input-group button {
    background: #8B5CF6;
    border: none;
    color: #FFFFFF;
    padding: 0 12px;
    cursor: pointer;
    font-size: 0.82rem;
    transition: background 0.2s;
}

.footer-input-group button:hover {
    background: #7C3AED;
}

/* Footer Alt Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #04060A;
    padding: 16px 0;
    margin-top: 10px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #64748B;
}

.footer-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10B981;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px #10B981;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #CBD5E1;
}

@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   15. SIDEBAR SON HABERLER & REHBER LİSTESİ (ULTRA MODERN UI)
   ========================================================================== */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #121622, #0A0D14);
    border: 1px solid #1E2536;
    border-radius: 10px;
    padding: 12px 14px;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover {
    border-color: var(--badge-color, #8B5CF6);
    background: linear-gradient(145deg, #161D2E, #0E121C);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.news-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    background: var(--badge-bg, rgba(139, 92, 246, 0.12));
    border: 1px solid var(--badge-color, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--badge-color, #8B5CF6);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.news-item:hover .news-icon-badge {
    transform: scale(1.08);
}

.news-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.news-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-title {
    font-size: 0.84rem;
    font-weight: 750;
    color: #FFFFFF;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-title {
    color: var(--badge-color, #8B5CF6);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 2px;
}

.news-comments {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}