/* =============================================
   PERFORMANS OPTİMİZASYONU - Ağır Animasyonlar Kaldırıldı
   ============================================= */

/* Backdrop-filter'ları kaldır - performans için */
.header-search input:focus,
.nav-btn:hover,
.game-icon-item,
.product-price-new,
.mobile-secondary-bar .wallet-section-combined,
.mobile-secondary-bar .mobile-secondary-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Scale animasyonlarını hafiflet */
.product-card:hover .product-image img,
.product-card-new:hover .product-image-new img,
.compact-cat-card:hover .cat-img-container img,
.streamer-home-card:hover .streamer-home-image img,
.streamer-showcase-card:hover .streamer-showcase-image img,
.news-showcase-card:hover .news-showcase-image img,
.news-card-new:hover .news-image-new img {
    transform: scale(1.02) !important; /* 1.05'ten 1.02'ye düşürüldü */
    transition: transform 0.2s ease !important; /* 0.3s'den 0.2s'ye hızlandırıldı */
}

/* Shine animasyonlarını kaldır - performans için */
.product-card-itembizde::before,
.product-card-itembizde::after,
.product-card-new::before,
.product-card-new::after {
    display: none !important;
}

/* Pulse animasyonlarını hafiflet */
.product-price-new {
    animation: none !important; /* priceGlowPulse kaldırıldı */
}

/* Transform animasyonlarını optimize et */
.product-hover-btn,
.cat-hover-info {
    will-change: transform, opacity;
    transform: translate(-50%, -50%) translateZ(0) !important;
}

.product-card:hover .product-hover-btn,
.compact-cat-card:hover .cat-hover-info {
    transform: translate(-50%, -50%) translateZ(0) !important;
}

/* Mobil performans optimizasyonu */
@media (max-width: 768px) {
    /* Mobilde tüm hover efektlerini kaldır */
    .product-card:hover .product-image img,
    .product-card-new:hover .product-image-new img,
    .compact-cat-card:hover .cat-img-container img {
        transform: none !important;
    }
    
    /* Mobilde backdrop-filter'ları tamamen kaldır */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Mobilde animasyonları yavaşlat */
    .announcement-marquee {
        animation-duration: 80s !important; /* 60s'den 80s'ye yavaşlatıldı */
    }
}

/* GPU hızlandırması için will-change ekle */
.announcement-marquee,
.snowflake,
.product-image img,
.slider-nav {
    will-change: transform;
}

/* Performans için transform3d kullan */
.slider-nav:hover {
    transform: translateY(-50%) translateZ(0) scale(1.05) !important;
}

.slider-nav:active {
    transform: translateY(-50%) translateZ(0) scale(0.98) !important;
}

/* CRITICAL: Tab Visibility Fix - En Üst Seviye */
.products-tabs,
.products-tabs .tabs-header,
.products-tabs .tab-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

:root {
    --bg-dark: #1e1e2e;
    --bg-card: #2a2a3e;
    --bg-card-hover: #3a3a4e;
    --primary: #00d4ff;
    --primary-hover: #00b8e6;
    --secondary: #7c3aed;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-main: #ffffff;
    --text-secondary: #b4b4b4;
    --text-muted: #888888;
    --border-color: #404040;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1e1e2e;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =============================================
   ANNOUNCEMENT BAR - Normal DOM Flow
   ============================================= */
/* Hem mobil hem emülatör optimizasyonu */
.announcement-bar {
    position: relative;
    width: 100%;
    height: 36px;
    background: linear-gradient(135deg, #2b2f3f 0%, #343a50 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Performans için backdrop-filter kaldırıldı */
    backdrop-filter: none;
    /* Hafifletilmiş box-shadow */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateZ(0); /* Flicker önleme */
}

.announcement-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.announcement-marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 60s linear infinite;
    gap: 40px;
    padding-left: 100%;
    /* GPU hızlandırması için optimizasyonlar */
    will-change: transform;
    transform: translate3d(100%, 0, 0);
}

.announcement-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.announcement-link {
    color: #4fd1ff;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.announcement-link:hover {
    color: #ffffff;
    border-bottom-color: #4fd1ff;
}

.announcement-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin: 0 20px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Emülatör için optimize edilmiş animasyon */
@media (min-width: 769px) {
    @keyframes marqueeScroll {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(-100%, 0, 0);
        }
    }
}

/* Emülatör optimizasyonu */
@media (min-width: 769px) {
    .announcement-marquee {
        /* Emülatörde biraz daha hızlı */
        animation-duration: 50s;
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .announcement-bar {
        height: 32px;
    }
    
    .announcement-item {
        font-size: 12px;
    }
    
    .announcement-marquee {
        /* Mobilde daha yavaş */
        animation-duration: 70s;
        gap: 30px;
    }
    
    .announcement-separator {
        margin: 0 15px;
        font-size: 10px;
    }
}

/* Global Game Pattern Overlay - Modern Gaming Theme */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/game-pattern.png');
    background-size: 400px 400px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-link:hover {
    opacity: 0.8;
}

/* =============================================
   MAIN HEADER
   ============================================= */
.main-header {
    background: var(--bg-dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-fallback i {
    font-size: 2rem;
}

/* Search Box */
.header-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0 auto;
}

.header-search input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-search button {
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    transition: background 0.3s;
}

.header-search button:hover {
    background: var(--primary-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.header-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card-hover);
}

/* Giriş Yap Yazısı */
.header-login-text {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-login-text:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.user-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6b7280;
    border-radius: 50%;
    color: white;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chat Avatar Styles */
.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab Styles */
.tab-button {
    position: relative;
}

.tab-button.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-balance {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--accent), #059669);
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
}

/* =============================================
   THEME TOGGLE BUTTON - Global Styles
   ============================================= */
.theme-toggle {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card-hover);
    transform: scale(1.05);
}

.theme-icon-dark,
.theme-icon-light {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-icon-light {
    display: none;
    color: #fbbf24;
}

.theme-icon-dark {
    display: inline-block;
    color: #60a5fa;
}

/* Light Theme Styles */
body.light-theme {
    --bg-dark: #ffffff;
    --bg-card: #f8fafc;
    --bg-card-hover: #f1f5f9;
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --secondary: #8b5cf6;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-main: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body.light-theme .theme-icon-dark {
    display: none !important;
}

body.light-theme .theme-icon-light {
    display: inline-block !important;
}

body.light-theme {
    background: #ffffff;
    color: var(--text-main);
}

body.light-theme .announcement-bar {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .announcement-item {
    color: #1e293b;
}

body.light-theme .announcement-link {
    color: #0ea5e9;
}

body.light-theme .announcement-link:hover {
    color: #1e293b;
    border-bottom-color: #0ea5e9;
}

body.light-theme .announcement-separator {
    color: rgba(0, 0, 0, 0.4);
}

.mobile-nav-left,
.mobile-nav-right {
    display: none;
}

/* SADECE MOBİL - Modern User Login Button */
@media (max-width: 768px) {
    .mobile-nav-right {
        display: inline-flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 16px !important;
        border-radius: 12px !important;
        background: rgba(45, 55, 72, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
    }

    .mobile-nav-right:hover,
    .mobile-nav-right:active {
        background: rgba(45, 55, 72, 1) !important;
        border-color: rgba(0, 200, 255, 0.4) !important;
        color: white !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-nav-right i {
        font-size: 16px !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid #00d4ff !important;
        border-radius: 50% !important;
        color: rgba(255, 255, 255, 0.9) !important;
        flex-shrink: 0 !important;
        transform: translateZ(0) !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.3) !important;
    }

    .mobile-nav-right span {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        line-height: 1.3 !important;
    }
}

/* =============================================
   MAIN NAV
   ============================================= */
.main-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-dark);
    border: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dropdown-btn:hover {
    background: var(--bg-card-hover);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
    background: var(--bg-card-hover);
}

.nav-link.active {
    border-bottom-color: var(--primary);
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-right {
    display: none;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.nav-btn-outline:hover {
    border-color: #6b7280;
    color: #9ca3af;
}

.nav-btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.nav-btn-primary:hover {
    background: var(--primary-hover);
}

/* =============================================
   GAME ICONS BAR
   ============================================= */
/* Üstteki oyun ikonları barı - Header'da olan */
.game-icons-bar {
    background: transparent;
    padding: 15px 0;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    filter: none;
}

/* Game Icons Section - Homepage'te olan */
.game-icons-section {
    padding: 20px 0;
    background: transparent;
}

.game-icons-section .game-icons-bar {
    padding: 0;
}

/* Container içindeki game-icons-bar için tam genişlik arka plan */
.container .game-icons-bar {
    position: relative;
    background: transparent;
}

.container .game-icons-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    z-index: -1;
}

.game-icons-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
    padding: 0 40px;
}

.game-icons-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.game-icons-scroll::-webkit-scrollbar {
    display: none;
}

.game-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.game-icon-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(34, 211, 238, 0.15);
}

.game-icon-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.game-icon-placeholder {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.game-icon-item span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.game-icon-item:hover span {
    color: var(--text-main);
}


/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 40px;
}

/* =============================================
   HERO SECTION - SLIDER LAYOUT
   ============================================= */
.hero-section {
    padding: 15px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 15px;
}

/* Left & Right Banners - Same Size */
.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-banner {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.side-banner:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.side-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.side-banner-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.side-banner-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.side-banner-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.7rem;
    color: white;
    transition: background 0.3s ease, color 0.3s ease;
}

.side-banner:hover .side-banner-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ETBIS Style Banner */
.side-banner.etbis-style {
    border-color: rgba(255, 255, 255, 0.15);
}

.side-banner.etbis-style .side-banner-content,
.etbis-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    background: var(--bg-card);
}

.etbis-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.etbis-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.etbis-site-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    margin: 5px 0;
}

.etbis-text {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Vergi Levhası Style Banner - Fotoğraf Arka Planda */
.side-banner.vergi-levhasi-style {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.vergi-levhasi-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.95;
    z-index: 0;
}

.vergi-levhasi-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(15, 18, 25, 0.4) 0%, rgba(15, 18, 25, 0.4) 100%);
    z-index: 1;
}

.side-banner.vergi-levhasi-style:hover .vergi-levhasi-bg {
    opacity: 1;
    transform: scale(1.02);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-banner.vergi-levhasi-style:hover .vergi-levhasi-overlay {
    background: linear-gradient(to bottom, rgba(15, 18, 25, 0.3) 0%, rgba(15, 18, 25, 0.3) 100%);
}

.side-banner.vergi-levhasi-style .etbis-badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vergi-site-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    background: transparent;
    padding: 8px 16px;
    border-radius: 8px;
}

/* Main Slider - İtembizde.com Yatay Kayma Style */
.hero-center {
    position: relative;
}

.main-slider {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    position: relative;
    background: var(--bg-card);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    display: none; /* Slider başlıklarını tamamen gizle */
}

/* Slider Dots - Tamamen Gizle */
.slider-dots {
    display: none !important;
}

/* Slider Navigation - Basit Style */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none !important;
    box-shadow: none !important;
}

.slider-nav:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.slider-nav:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Basit Dots Navigation - Gizli */
.slider-dots {
    display: none !important;
}
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary);
}

.section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.section-link:hover {
    text-decoration: underline;
}

/* =============================================
   PRODUCTS TABS - İtembizde.com Style - Temiz Tasarım
   ============================================= */
.products-tabs {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    min-height: 50px !important;
}

.tabs-header {
    display: flex !important;
    gap: 40px;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
}

.tab-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 11 !important;
    min-width: auto !important;
    height: auto !important;
    border-bottom: 2px solid transparent;
    padding-bottom: 8px;
}

.tab-btn:hover {
    color: var(--text-main);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-btn i {
    font-size: 0.85rem;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-link:hover {
    color: var(--primary-hover);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =============================================
   NEW PRODUCT CARDS - İtembizde.com Style
   ============================================= */
.product-card-new {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Badges - Kartın En Üstünde (Resmin Dışında) */
.product-badges-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.badge-category {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.95);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    flex: 1;
    text-align: center;
}

.badge-featured {
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.95);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    flex: 1;
    text-align: center;
}

.badge-showcase {
    padding: 6px 12px;
    background: rgba(34, 211, 238, 0.95);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    flex: 1;
    text-align: center;
}

.badge-new {
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.95);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    flex: 1;
    text-align: center;
}

/* Eski badge sistemi - artık kullanılmıyor */
.product-badges {
    display: none;
}

/* Image */
.product-image-new {
    position: relative;
    display: block;
    height: 180px;
    background: var(--bg-dark);
    overflow: hidden;
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.05);
}

/* Price Overlay - Profesyonel */
.product-price-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #6b7fd7 0%, #8b7fd7 100%);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(107, 127, 215, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    animation: priceGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes priceGlowPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(107, 127, 215, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow: 0 6px 30px rgba(107, 127, 215, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

/* Badges - Gizle */
.product-badges-overlay {
    display: none;
}

.badge-category,
.badge-featured,
.badge-showcase,
.badge-new {
    display: none;
}

/* Eski sistemler */
.product-badges-top,
.product-badges {
    display: none;
}

.product-price-new {
    display: none;
}

/* Sold Overlay */
.sold-overlay-new {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.sold-text-new {
    color: var(--danger);
    font-size: 1.3rem;
    font-weight: 800;
    border: 3px solid var(--danger);
    padding: 8px 20px;
    border-radius: 8px;
    transform: rotate(-10deg);
    background: rgba(0, 0, 0, 0.5);
}

/* Info Section */
.product-info-new {
    padding: 15px;
}

/* Title */
.product-title-new {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-title-new a {
    color: var(--text-main);
    transition: color 0.3s;
}

.product-title-new a:hover {
    color: var(--primary);
}

/* Description */
.product-description-new {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Seller Info */
.product-seller-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.seller-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.seller-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.seller-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.seller-name {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.verified-icon-new {
    color: var(--primary);
    font-size: 0.85rem;
}

/* =============================================
   PRODUCT CARDS - 6'lı Grid
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* İlk yüklemede sadece 24 ürün göster (4 satır x 6 ürün) */
.products-grid .product-card:nth-child(n+25) {
    display: none;
}

.products-grid.show-more .product-card {
    display: block;
}

.product-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 160px;
    background: var(--bg-dark);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--secondary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card:hover .product-hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-title a {
    color: var(--text-main);
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary);
}

.product-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.product-btn:hover {
    background: var(--primary-hover);
}

/* Sold Out */
.product-card.sold-out {
    opacity: 0.7;
}

.sold-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-text {
    color: var(--danger);
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid var(--danger);
    padding: 5px 15px;
    border-radius: 6px;
    transform: rotate(-10deg);
}

.btn-disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}


/* =============================================
   CATEGORY CARDS
   ============================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.category-icon img,
.category-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.category-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 2px;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -5px;
}

/* =============================================
   SIDE ACTIONS
   ============================================= */
.side-actions {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.side-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 0.65rem;
    transition: all 0.3s;
    min-width: 60px;
}

.side-action-item i {
    font-size: 1.2rem;
}

.side-action-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(-5px);
}

.side-action-support {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
    color: white;
}

.side-action-support:hover {
    color: white;
    transform: translateX(-5px) scale(1.05);
}

/* =============================================
   MOBILE MENU
   ============================================= */
/* =============================================
   MOBILE MENU - SYNCHRONIZED ANIMATIONS
   ============================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(15, 18, 25, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    transition: right 0.25s ease;
    overflow-y: auto;
    will-change: transform;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

/* Synchronized content animations */
.mobile-menu-header,
.mobile-menu-content,
.mobile-search-wrapper {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.25s ease;
}

.mobile-menu-overlay.active .mobile-menu-header,
.mobile-menu-overlay.active .mobile-menu-content,
.mobile-menu-overlay.active .mobile-search-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition-delay: 0.1s;
    min-height: 60px;
}

.mobile-search-wrapper {
    padding: 20px 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition-delay: 0.15s;
}

.mobile-menu-content {
    padding: 20px 15px;
    transition-delay: 0.2s;
}

.mobile-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}
}

/* Mobile-only X button positioning */
@media (max-width: 768px) {
    .mobile-close {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 9999;
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: white;
        font-size: 1.6rem;
        font-weight: 300;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1;
    }

    .mobile-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
}

.mobile-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    opacity: 0;
    transform: translateX(15px);
}

.mobile-menu-overlay.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered link animations */
.mobile-link:nth-child(1) { transition-delay: 0.25s; }
.mobile-link:nth-child(2) { transition-delay: 0.3s; }
.mobile-link:nth-child(3) { transition-delay: 0.35s; }
.mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-link:nth-child(5) { transition-delay: 0.45s; }
.mobile-link:nth-child(6) { transition-delay: 0.5s; }
.mobile-link:nth-child(7) { transition-delay: 0.55s; }
.mobile-link:nth-child(8) { transition-delay: 0.6s; }

.mobile-link:hover {
    background: rgba(34, 211, 238, 0.15);
    color: white;
}

.mobile-link i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    opacity: 0;
    transition: opacity 0.25s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-divider {
    opacity: 1;
}

/* Mobile Search Form */
.mobile-search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    align-items: center;
}

.mobile-search-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    outline: none;
    height: 44px;
    box-sizing: border-box;
}

.mobile-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-search-form button {
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.1rem;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.mobile-search-form button:hover {
    color: white;
}

/* Scrollbar */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-input {
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #6b7280;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #6b7280;
    color: white;
}

.btn-primary:hover {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: #6b7280;
    color: #9ca3af;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
}

.link-primary {
    color: var(--primary);
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--text-main);
}

/* Daha Fazla Gör Butonu */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.btn-load-more.hidden {
    display: none;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mt-2 {
    margin-top: 16px;
}

.mb-2 {
    margin-bottom: 16px;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.accent-dot {
    color: var(--primary);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 220px;
    }



    /* 5'li grid */
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }



    .nav-links {
        display: none;
    }

    .nav-dropdown {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* 4'lü grid */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left span {
        font-size: 0.7rem;
    }

    .top-bar-right {
        display: none;
    }

    .header-search {
        display: none;
    }

    .header-icon:not(:last-child) {
        display: none;
    }

    .header-balance {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-right {
        display: none;
    }

    .game-icon-item {
        min-width: 75px;
        padding: 10px 15px;
    }

    .game-icon-item img,
    .game-icon-placeholder {
        width: 32px;
        height: 32px;
    }

    .main-slider {
        height: 250px;
    }

    .slider-title {
        font-size: 1.3rem;
    }

    .slider-desc {
        display: none;
    }

    /* 3'lü grid */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 130px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {

    /* 2'li grid mobilde */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .side-actions {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        padding: 0;
        overflow: hidden;
    }

    .category-icon img,
    .category-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 40px;
    }

    .game-icon-item {
        min-width: 65px;
        padding: 8px 10px;
    }

    .game-icon-item span {
        font-size: 0.65rem;
    }

    .main-slider {
        height: 200px;
    }

    .slider-content {
        padding: 20px;
    }

    .slider-title {
        font-size: 1.1rem;
    }

    .slider-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .products-grid {
        gap: 10px;
    }

    .product-image {
        height: 110px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .auth-box {
        padding: 25px 20px;
    }
}

/* =============================================
   CATEGORY PAGE STYLES
   ============================================= */
.category-page-wrapper {
    padding: 20px 0 60px;
}

.category-search-area {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
}

.search-box-modern {
    position: relative;
}

.search-box-modern i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box-modern input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-size: 0.9rem;
}

.search-box-modern input:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-pills {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pill-btn {
    padding: 8px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.pill-btn:hover,
.pill-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.modern-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.modern-title-box h2 {
    font-size: 1.5rem;
}

.compact-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.compact-cat-card {
    transition: all 0.3s;
}

.cat-link {
    display: block;
}

.cat-img-container {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.cat-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.compact-cat-card:hover .cat-img-container img {
    transform: scale(1.1);
}

.compact-cat-card:hover .cat-img-container {
    border-color: var(--primary);
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.cat-hover-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    opacity: 0;
    transition: all 0.3s;
}

.compact-cat-card:hover .cat-hover-info {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cat-info-simple {
    padding: 12px 5px;
    text-align: center;
}

.cat-name-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.cat-count-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 20px 0;
}

.category-page {
    padding: 20px 0;
}

.empty-state {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.empty-content {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

.empty-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-content h3 {
    margin-bottom: 10px;
}

.empty-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.empty-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-account {
    background: var(--accent);
    color: white;
}

.badge-currency {
    background: var(--warning);
    color: var(--bg-dark);
}

.badge-item {
    background: var(--secondary);
    color: white;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-title-link {
    color: var(--text-main);
}

.product-title-link:hover {
    color: var(--primary);
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .compact-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* =============================================
   RESPONSIVE - TABLET (1024px)
   ============================================= */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 280px;
    }



    .game-icons-grid {
        grid-template-columns: repeat(9, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }



    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .game-icons-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (768px)
   ============================================= */
@media (max-width: 768px) {
    /* Slider dikey boşluk değişkeni */
    :root {
        --slider-gap: 16px;
    }

    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar-left span {
        font-size: 0.7rem;
    }

    .top-bar-right {
        display: none;
    }

    /* Header */
    .header-content {
        gap: 10px;
    }

    .header-logo img {
        height: 35px;
    }

    .header-search {
        display: none;
    }

    .header-icon:not(:last-child) {
        display: none;
    }

    .header-balance {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Nav */
    .main-nav {
        display: none;
    }

    /* Slider üstündeki elementlerin boşluklarını sıfırla */
    .game-icons-bar {
        padding: 15px 0 0 0 !important;
        margin-bottom: 0 !important;
    }

    /* Hero Section - Slider wrapper'ına dikey boşluk ver */
    .hero-section {
        padding: 0 !important;
    }

    .hero-center {
        margin-top: var(--slider-gap);
        margin-bottom: var(--slider-gap);
    }

    /* Slider altındaki elementlerin boşluklarını sıfırla */
    .section {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* İlk section'ın alt padding'ini koru */
    .section {
        padding-bottom: 15px;
    }

    .game-icons-grid {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 12px;
        padding: 0 15px 15px 15px;
        position: relative;
    }

    .game-icons-grid::-webkit-scrollbar {
        display: none;
    }

    .game-icon-item {
        width: 91px;
        height: 50px;
        padding: 10px 12px;
        background: rgba(42, 42, 62, 0.85);
        border-radius: 8px;
        border: none;
        transition: background 0.3s ease, transform 0.2s ease;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        text-decoration: none;
        flex-shrink: 0;
        transform: translateZ(0);
        position: relative;
        will-change: background, transform;
    }

    .game-icon-item:hover {
        background: rgba(52, 52, 72, 0.9);
        transform: translateZ(0);
    }

    .game-icon-item:active {
        transform: translateZ(0) scale(0.98);
    }

    .game-icon-item img,
    .game-icon-placeholder {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        margin: 0;
        flex-shrink: 0;
    }

    .game-icon-item span {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.2;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
        flex: 1;
    }

    /* Game Icons Bar - Sabit pozisyon */
    .game-icons-bar {
        padding: 15px 0 !important;
        margin: 0 !important;
        position: relative;
        z-index: 1;
        transform: translateZ(0);
        will-change: auto;
    }

    .game-icons-grid {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 10px;
        padding: 0 15px 10px 15px;
        position: relative;
        transform: translateZ(0);
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }
}

/* =============================================
   EMULATOR/TABLET HEADER REDESIGN (768px - 1200px)
   ============================================= */
@media (min-width: 768px) and (max-width: 1200px) {
    /* Header tek satır düzeni - itembizde.com style */
    .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
        padding: 0 !important;
    }

    /* Logo - Sol taraf */
    .header-logo {
        flex-shrink: 0 !important;
        order: 1 !important;
    }

    .header-logo img {
        height: 45px !important;
    }

    /* Arama kutusu - Orta, geniş */
    .header-search {
        flex: 1 !important;
        max-width: none !important;
        margin: 0 20px !important;
        order: 2 !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 25px !important;
        overflow: hidden !important;
        height: 45px !important;
        display: flex !important;
    }

    .header-search input {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        background: transparent !important;
        border: none !important;
        color: var(--text-main) !important;
        outline: none !important;
        flex: 1 !important;
    }

    .header-search input::placeholder {
        color: var(--text-muted) !important;
    }

    .header-search button {
        padding: 12px 20px !important;
        background: var(--primary) !important;
        border: none !important;
        color: white !important;
        cursor: pointer !important;
        transition: background 0.3s !important;
        border-radius: 0 25px 25px 0 !important;
    }

    .header-search button:hover {
        background: var(--primary-hover) !important;
    }

    /* Header Actions - Sağ taraf */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        flex-shrink: 0 !important;
        order: 3 !important;
    }

    /* Giriş yap butonu - minimal */
    .header-login-text {
        padding: 10px 16px !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 8px !important;
        color: var(--text-main) !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        transition: all 0.3s !important;
        white-space: nowrap !important;
    }

    .header-login-text:hover {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
    }

    /* Header ikonları - minimal */
    .header-icon {
        width: 40px !important;
        height: 40px !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 8px !important;
        color: var(--text-secondary) !important;
        font-size: 1rem !important;
        transition: all 0.3s !important;
    }

    .header-icon:hover {
        border-color: var(--primary) !important;
        color: var(--primary) !important;
        background: var(--bg-card-hover) !important;
    }

    /* User avatar */
    .user-avatar {
        width: 40px !important;
        height: 40px !important;
    }

    /* Balance */
    .header-balance {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    /* Mobile nav elementlerini gizle */
    .mobile-nav-left,
    .mobile-nav-right,
    .mobile-toggle {
        display: none !important;
    }

    /* Header yüksekliği - sıkı ve profesyonel */
    .main-header {
        padding: 12px 0 !important;
    }

    /* Emulator görünümde giriş yap düzenlemesi */
    .header-user-icon {
        order: 1 !important;
    }

    .header-login-text {
        order: 2 !important;
        padding: 10px 16px !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 8px !important;
        color: var(--text-main) !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        transition: all 0.3s !important;
        white-space: nowrap !important;
    }

    .header-login-text:hover {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
    }

    .header-cart-icon {
        order: 3 !important;
    }

    /* Theme Toggle Button */
    .theme-toggle {
        order: 4 !important;
        width: 40px !important;
        height: 40px !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 50% !important;
        color: var(--text-secondary) !important;
        font-size: 1rem !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .theme-toggle:hover {
        border-color: var(--primary) !important;
        color: var(--primary) !important;
        background: var(--bg-card-hover) !important;
        transform: scale(1.05) !important;
    }

    .theme-icon-dark,
    .theme-icon-light {
        position: absolute !important;
        transition: all 0.3s ease !important;
    }

    .theme-icon-light {
        display: none !important;
        color: #fbbf24 !important;
    }

    .theme-icon-dark {
        display: inline-block !important;
        color: #60a5fa !important;
    }
}

/* Emulator/Tablet için daha büyük kutucuklar (481px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
    .game-icons-grid {
        gap: 16px;
        padding: 0 20px;
    }

    .game-icon-item {
        min-width: 144px;
        height: 70px;
        padding: 10px 16px;
        background: #11172AE6;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        text-align: left;
    }

    .game-icon-item:hover {
        background: rgba(52, 52, 72, 0.9);
        border-color: #00d4ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
    }

    .game-icon-item img,
    .game-icon-placeholder {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .game-icon-item span {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        color: #D7D8E6;
        margin-top: 0;
        line-height: 1.2;
    }

    /* Hero Section - Slider için eşit boşluk */
    .hero-section {
        padding: 0 !important;
    }

    .main-slider {
        height: 200px;
        border-radius: 10px;
    }

    .slider-content {
        padding: 15px;
    }

    .slider-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .slider-title {
        font-size: 1.2rem;
    }

    .slider-desc {
        display: none;
    }

    .slider-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    /* Sections - Slider altındaki bölümler için eşit boşluk */
    .section {
        padding-top: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 15px;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-link {
        font-size: 0.8rem;
    }

    /* Products Grid */
    .products-grid,
    .grid-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 120px;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .product-hover-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .product-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
        padding: 0;
        overflow: hidden;
    }

    .category-icon img,
    .category-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 0.8rem;
    }

    .category-card p {
        font-size: 0.65rem;
    }

    /* Side Actions - Hide on mobile */
    .side-actions {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    /* Auth Pages */
    .auth-box {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }

    /* Category Page */
    .category-page-wrapper {
        padding: 15px 0 40px;
    }

    .category-search-area {
        padding: 15px;
        margin-bottom: 20px;
    }

    .compact-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .modern-title-box h2 {
        font-size: 1.2rem;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
    .header-logo img {
        height: 30px;
    }

    .header-balance {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .game-icon-item {
        min-width: 60px;
        padding: 6px 4px;
    }

    .game-icon-item img,
    .game-icon-placeholder {
        width: 26px;
        height: 26px;
    }

    .game-icon-item span {
        font-size: 0.55rem;
    }

    .main-slider {
        height: 160px;
    }

    .slider-title {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .products-grid,
    .grid-products {
        gap: 8px;
    }

    .product-image {
        height: 100px;
    }

    .product-info {
        padding: 8px;
    }

    .product-title {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .product-btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1rem;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card {
        padding: 12px 8px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        padding: 0;
        overflow: hidden;
    }

    .category-icon img,
    .category-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .category-card h3 {
        font-size: 0.75rem;
    }
}

/* =============================================
   MOBILE BOTTOM NAVIGATION
   ============================================= */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 8px 0 12px;
    z-index: 1000;
}

.mobile-bottom-nav .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.65rem;
    padding: 5px 10px;
}

.mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    .main-content {
        padding-bottom: 70px;
    }

    .footer {
        margin-bottom: 60px;
    }
}


/* =============================================
   CATEGORY PAGE STYLES
   ============================================= */
.category-page {
    padding: 20px 0;
}

.category-page .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-account {
    background: linear-gradient(135deg, var(--secondary), #a855f7);
    color: white;
}

.badge-currency {
    background: linear-gradient(135deg, var(--accent), #059669);
    color: white;
}

.badge-item {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Description */
.product-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-disabled {
    color: var(--text-muted);
}

/* Current Price Styling */
.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 8px;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 30px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon i {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.empty-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.empty-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   PROFILE PAGE STYLES
   ============================================= */
.profile-section {
    padding: 30px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.profile-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 25px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.profile-name {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-email {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.profile-menu-item:hover,
.profile-menu-item.active {
    background: var(--bg-dark);
    color: var(--primary);
}

.profile-menu-item i {
    width: 20px;
    text-align: center;
}

.profile-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.profile-content h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

/* =============================================
   BALANCE PAGE STYLES
   ============================================= */
.balance-section {
    padding: 30px 0;
}

.balance-header {
    text-align: center;
    margin-bottom: 40px;
}

.balance-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.balance-label {
    color: var(--text-secondary);
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.balance-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.balance-card:hover,
.balance-card.selected {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

.balance-card.selected {
    background: rgba(34, 211, 238, 0.1);
}

.balance-card-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.balance-card-bonus {
    font-size: 0.85rem;
    color: var(--accent);
}

/* =============================================
   ORDERS PAGE STYLES
   ============================================= */
.orders-section {
    padding: 30px 0;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.orders-table th {
    background: var(--bg-dark);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.orders-table tr:hover {
    background: var(--bg-card-hover);
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.status-completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

/* =============================================
   MESSAGES PAGE STYLES
   ============================================= */
.messages-section {
    padding: 30px 0;
}

.messages-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    height: 600px;
}

.messages-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.messages-list-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.messages-list-header h3 {
    font-size: 1.1rem;
}

.message-item {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.message-item:hover,
.message-item.active {
    background: var(--bg-dark);
}

.message-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.message-info {
    flex: 1;
    min-width: 0;
}

.message-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.message-preview {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-area {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.chat-input {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
}

.chat-input button {
    padding: 12px 24px;
    background: var(--primary);
    border: none;
    border-radius: var(--border-radius);
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .messages-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .messages-list {
        max-height: 300px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .category-page .section-title {
        font-size: 1.4rem;
    }

    .balance-amount {
        font-size: 2.2rem;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .profile-sidebar {
        padding: 20px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .balance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .balance-card {
        padding: 15px;
    }

    .balance-card-amount {
        font-size: 1.4rem;
    }

    .empty-content {
        padding: 30px 20px;
    }

    .empty-actions {
        flex-direction: column;
    }

    .empty-actions .btn {
        width: 100%;
    }
}

/* =============================================
   STREAMER PAGE STYLES
   ============================================= */
.streamer-section {
    padding: 30px 0;
}

.streamer-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.streamer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.streamer-info h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.streamer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.streamer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.streamer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =============================================
   LOADING & ANIMATIONS
   ============================================= */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for notifications */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* =============================================
   SELECTION STYLING
   ============================================= */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--primary);
    color: var(--bg-dark);
}


/* =============================================
   AUTH CONTAINER FIX
   ============================================= */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* =============================================
   LOGO SIZE ADJUSTMENTS
   ============================================= */
.header-logo img {
    height: 132px;
    width: auto;
    max-width: 300px;
}

@media (max-width: 768px) {
    .header-logo img {
        height: 90px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 70px;
        max-width: 160px;
    }
}

/* =============================================
   GAME ICONS MOBILE SCROLL
   ============================================= */
@media (max-width: 768px) {
    .game-icons-grid {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 15px;
        gap: 10px;
    }

    .game-icons-grid::-webkit-scrollbar {
        display: none;
    }

    .game-icon-item {
        min-width: 70px;
        flex-shrink: 0;
    }
}

/* =============================================
   PRODUCTS SECTION PADDING
   ============================================= */
.products-section {
    padding: 20px 0;
}

/* =============================================
   ADDITIONAL BUTTON STYLES
   ============================================= */
.btn-success {
    background: var(--accent);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-warning {
    background: var(--warning);
    color: var(--bg-dark);
}

.btn-warning:hover {
    background: #d97706;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* =============================================
   TABLE RESPONSIVE
   ============================================= */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* =============================================
   CARD HOVER EFFECTS
   ============================================= */
.hover-lift {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =============================================
   NOTIFICATION BADGE
   ============================================= */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* =============================================
   TOOLTIP
   ============================================= */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
}


/* =============================================
   YAYINCI DESTEKLE - STREAMER SECTION
   ============================================= */

.streamers-section {
    padding: 60px 0;
}

.streamers-header-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.streamers-header-home .section-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #53fc18;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.view-all-link:hover {
    background: rgba(83, 252, 24, 0.2);
    transform: translateX(5px);
}

.streamers-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.streamer-home-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.streamer-home-card:hover {
    transform: translateY(-5px);
    border-color: #53fc18;
    box-shadow: 0 15px 40px rgba(83, 252, 24, 0.2);
}

.streamer-home-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-dark);
}

.streamer-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.streamer-home-card:hover .streamer-home-image img {
    transform: scale(1.05);
}

.streamer-home-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #53fc18 0%, #2d8a0e 100%);
    font-size: 3rem;
    color: white;
}

.streamer-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streamer-home-card:hover .streamer-home-overlay {
    opacity: 1;
}

.streamer-home-overlay i {
    font-size: 2.5rem;
    color: #53fc18;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #53fc18;
}

.streamer-home-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-card);
}

/* Streamers Responsive */
@media (max-width: 1024px) {
    .streamers-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .streamers-header-home {
        flex-direction: column;
        align-items: flex-start;
    }

    .streamers-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .streamer-home-name {
        padding: 12px;
        font-size: 0.9rem;
    }

    .streamer-home-overlay i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .streamers-home-grid {
        grid-template-columns: 1fr;
    }
}

/*
 =============================================
   SUPPORT / DESTEK SAYFASI
   ============================================= */

.support-section {
    padding: 60px 0;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.support-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.support-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.support-header p {
    color: var(--text-secondary);
    margin-top: 5px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.support-card {
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

.support-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.support-card-icon.cyan {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.support-card-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.support-card-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.support-card-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.support-card-icon.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.support-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.support-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.support-card-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.support-card:hover .support-card-arrow {
    transform: translateX(5px);
}

/* Contact Info Section */
.contact-info-section {
    margin-top: 60px;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-info-card {
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.contact-info-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.contact-info-card p {
    color: var(--text-secondary);
}

/* Support Responsive */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-header {
        flex-direction: column;
        text-align: center;
    }

    .support-header h1 {
        font-size: 2rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   PAGE HEADER
   ============================================= */

.page-header {
    padding: 40px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.page-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* ===
==========================================
   FAQ SAYFASI
   ============================================= */

.faq-section {
    padding: 60px 0;
}

.faq-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-family: inherit;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* =============================================
   CONTACT / İLETİŞİM SAYFASI
   ============================================= */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.contact-form-wrapper {
    padding: 40px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-wrapper>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.contact-info-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-info-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-info-icon.cyan {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.contact-info-box h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-box p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-box small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Form Stilleri */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-box {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .faq-category-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-wrapper {
        flex-direction: column;
    }
}


/* Social Links Box */
.social-links-box {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.social-links-box h4 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Button Block */
.btn-block {
    width: 100%;
    justify-content: center;
}


/* Mobile: Hide "İlanı Gör" hover button on product cards */
@media (max-width: 768px) {
    .product-hover-btn {
        display: none !important;
    }
}


/* Product image clickable area */
a.product-image {
    display: block;
    position: relative;
    cursor: pointer;
}


/* Sadece Emulator: Logo büyütme (Desktop ve mobil etkilenmesin) */
@media (min-width: 769px) and (max-width: 1024px) {
    img[src*="logo"] {
        width: 220px !important;
        height: auto !important;
        max-height: none !important;
        flex-shrink: 0 !important;
        object-fit: contain !important;
    }
}


/* Header Search Form Fix */
.header-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.header-search input[type="text"] {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
}

.header-search input[type="text"]:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.header-search input[type="text"]::placeholder {
    color: var(--text-muted);
}

.header-search button {
    padding: 12px 18px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-search button:hover {
    background: var(--primary-hover);
}

.header-search button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
}


/* Mobile Search in Menu */
.mobile-search-wrapper {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-search-form {
    display: flex;
    width: 100%;
}

.mobile-search-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.mobile-search-form input:focus {
    border-color: var(--primary);
}

.mobile-search-form input::placeholder {
    color: var(--text-muted);
}

.mobile-search-form button {
    padding: 12px 18px;
    background: var(--primary);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
}

/* =============================================
   PRODUCT CARD BADGES - KIMLIK ONAYLI SATICI
   ============================================= */
.verified-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(76, 175, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.verified-seller-badge .badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.product-seller {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding: 5px 0;
}

.product-seller i.fa-user {
    color: var(--primary);
    font-size: 0.75rem;
}

.product-seller .verified-icon {
    color: #4CAF50;
    font-size: 0.85rem;
    margin-left: 2px;
}

.product-seller span {
    font-weight: 500;
}

/* Ürün kartı hover efektleri */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card:hover .verified-seller-badge {
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

/* =============================================
   TEMBZDE.COM STYLE - PRODUCT CARDS
   ============================================= */
.product-card-itembizde {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: visible;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-itembizde:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Ribbon Badges */
.ribbon-badge {
    position: absolute;
    top: 10px;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ribbon-right {
    right: -5px;
}

.ribbon-right::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.2);
    border-top: 5px solid rgba(0, 0, 0, 0.2);
}

.ribbon-left {
    left: -5px;
}

.ribbon-left::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid rgba(0, 0, 0, 0.2);
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.2);
}

.ribbon-teal {
    background: #00b5ad;
}

.ribbon-orange {
    background: #f2711c;
}

/* Image */
.product-image-link {
    display: block;
    position: relative;
}

.product-image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-dark);
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card-itembizde:hover .product-image {
    transform: scale(1.05);
}

/* Price - PROFESYONEL */
.product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 15px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4), 0 3px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-price-box small {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 3px;
    opacity: 0.9;
}

/* Category Icon */
.product-category-icon {
    position: absolute;
    top: 210px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title */
.product-title-box {
    padding: 15px 15px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-box:hover {
    color: var(--primary);
}

/* Description */
.product-desc-box {
    padding: 0 15px 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

/* Seller */
.product-seller-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.seller-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.seller-name-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.seller-name-text small {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Price Box - Ultra Profesyonel */
.product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-price-box small {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
    opacity: 0.95;
}

/* =============================================
   TEMBZDE STYLE - PROFESYONEL FYAT
   ============================================= */
.product-card-itembizde .product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-card-itembizde .product-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-card-itembizde .product-price-box small {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
    opacity: 0.95;
}

/* Price Box - Ultra Profesyonel */
.product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-price-box small {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
    opacity: 0.95;
}

/* Price Box - Ultra Profesyonel */
.product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-price-box small {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
    opacity: 0.95;
}

/* Price Box - Ultra Profesyonel */
.product-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';

    /* =============================================
   PRODUCTS TABS - MOBILE RESPONSIVE
   ============================================= */
    @media (max-width: 768px) {
        .products-tabs {
            padding: 6px;
            margin-bottom: 20px;
        }

        .tabs-header {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex-wrap: nowrap;
        }

        .tabs-header::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            padding: 10px 16px;
            font-size: 0.85rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .tab-btn i {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .products-tabs {
            padding: 4px;
        }

        .tab-btn {
            padding: 8px 12px;
            font-size: 0.75rem;
            gap: 6px;
        }

        .tab-btn i {
            font-size: 0.75rem;
        }
    }

    /* =============================================

@media (max-width: 480px) {
    .side-banner {
        min-width: 240px !important;
        height: 120px !important;
    }
    
    .main-slider {
        height: 150px !important;
    }
    
    .slider-title {
        font-size: 1rem !important;
    }
    
    .slider-badge {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
}
}

/* =============================================

/* Updated: 2026-01-30 04:34:46 - Mobile Grid Layout Active */

    /* =============================================


/* =============================================
   HERO SLIDER - MOBILE GRID LAYOUT (2-1-2) - FIXED
   ============================================= */
    @media (max-width: 768px) {
        .hero-grid {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            grid-template-rows: auto auto auto !important;
            gap: 12px !important;
            padding: 10px 0 !important;
        }

        .hero-center {
            grid-column: 1 / 3 !important;
            grid-row: 2 !important;
            width: 100% !important;
        }

        .hero-left {
            grid-column: 1 / 3 !important;
            grid-row: 1 !important;
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 12px !important;
        }

        .hero-right {
            grid-column: 1 / 3 !important;
            grid-row: 3 !important;
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 12px !important;
        }

        .side-banner {
            width: 100% !important;
            height: 140px !important;
            min-width: unset !important;
        }

        .main-slider {
            height: 200px !important;
            width: 100% !important;
        }
    }

    .slider-content {
        padding: 15px !important;
    }

    .slider-title {
        font-size: 1.2rem !important;
    }

    .slider-desc {
        font-size: 0.85rem !important;
    }

    .slider-badge {
        font-size: 0.75rem !important;
        padding: 5px 12px !important;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 10px !important;
    }

    .hero-left,
    .hero-right {
        gap: 10px !important;
    }

    .side-banner {
        height: 120px !important;
    }

    .main-slider {
        height: 170px !important;
    }

    .slider-title {
        font-size: 1rem !important;
    }

    .slider-desc {
        font-size: 0.75rem !important;
    }

    .side-banner-content {
        padding: 10px !important;
    }

    .side-banner-title {
        font-size: 0.9rem !important;
    }

    .side-banner-subtitle {
        font-size: 0.75rem !important;
    }
}

/* =============================================
   HERO SLIDER - MOBILE GRID LAYOUT - STRONGER SPECIFICITY
   ============================================= */
@media (max-width: 768px) {
    .hero-section .container .hero-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 12px !important;
        padding: 10px 0 !important;
    }

    .hero-section .container .hero-grid .hero-center {
        grid-column: 1 / 3 !important;
        grid-row: 2 !important;
        width: 100% !important;
    }

    .hero-section .container .hero-grid .hero-left {
        grid-column: 1 / 3 !important;
        grid-row: 1 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        flex-direction: unset !important;
    }

    .hero-section .container .hero-grid .hero-right {
        grid-column: 1 / 3 !important;
        grid-row: 3 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        flex-direction: unset !important;
    }

    .hero-section .hero-left .side-banner,
    .hero-section .hero-right .side-banner {
        width: 100% !important;
        height: 160px !important;
        min-width: unset !important;
        flex-shrink: unset !important;
    }
}


/* Cache Buster: 20260130050046 */



/* Slider Button Updated: 20260130050317 */


/* Game Icons Bar Darkened: 20260130050605 */




/* Site-wide Dark Background: 20260130051331 */

/* ============================================= 
   CRITICAL UPDATE - 20260130051508
   ENTIRE SITE BACKGROUND CHANGED TO DARK
   Old: #0f1219 (26, 31, 46)
   New: #0f1219 (15, 18, 25)
   ============================================= */

/* =============================================
   DUYURU BANDI KALDIRILDI
   ============================================= */

/* Ana içeriği normal konumda tut */
.main-header {
    margin-top: 0;
}

/* Mobil Cüzdan + Avatar Alanı */
.mobile-user-area {
    display: none;
}

@media (max-width: 768px) {
    .mobile-user-area {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }
    
    .mobile-wallet {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 6px 10px;
        border-radius: 14px;
        font-size: 12px;
        background: rgba(255,255,255,0.06);
        color: #fff;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .mobile-wallet:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .mobile-wallet i {
        font-size: 14px;
        color: #00d4ff;
    }
    
    .wallet-amount {
        font-weight: 600;
    }
    
    .mobile-avatar img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .avatar-fallback {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00d4ff;
        font-size: 14px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Mevcut mobil navigasyon elemanlarını gizle */
    .mobile-nav-right {
        display: none !important;
    }
}
/* =============================================
   DUAL SECTION - YAYINCI & HABERLER (ULTRA COMPACT)
   ============================================= */
.dual-section {
    padding: 1rem 0;
    background: var(--bg-main);
}

.dual-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.section-header-dual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--border-color);
}

.section-title-dual {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.section-icon {
    font-size: 0.85rem;
    color: var(--primary);
}

.section-title-dual h2 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.4rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* YAYINCI SHOWCASE - ULTRA COMPACT */
.streamers-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
}

.streamer-showcase-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 60px;
}

.streamer-showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.streamer-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.streamer-placeholder-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.streamer-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streamer-showcase-card:hover .streamer-showcase-overlay {
    opacity: 1;
}

.streamer-showcase-card:hover .streamer-showcase-image img {
    transform: scale(1.05);
}

.streamer-info-overlay h3 {
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    margin: 0;
}

.streamer-showcase-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 0.3rem 0.4rem 0.4rem;
    color: white;
    font-size: 0.6rem;
    font-weight: 500;
}

.streamer-showcase-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* HABERLER SHOWCASE - ULTRA COMPACT */
.news-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
}

.news-showcase-card {
    display: flex;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 45px;
}

.news-showcase-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.news-showcase-card.featured {
    flex-direction: column;
    min-height: 90px;
}

.news-showcase-card:not(.featured) {
    flex-direction: row;
}

.news-showcase-image {
    position: relative;
    overflow: hidden;
}

.news-showcase-card.featured .news-showcase-image {
    height: 50px;
}

.news-showcase-card:not(.featured) .news-showcase-image {
    width: 45px;
    flex-shrink: 0;
}

.news-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-showcase-card:hover .news-showcase-image img {
    transform: scale(1.05);
}

.news-category-badge {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    background: var(--primary);
    color: white;
    padding: 0.1rem 0.25rem;
    border-radius: 2px;
    font-size: 0.5rem;
    font-weight: 500;
}

.news-showcase-content {
    padding: 0.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-showcase-content h3 {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.15rem 0;
    line-height: 1.2;
}

.news-showcase-content p {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin: 0 0 auto 0;
    line-height: 1.2;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    border-top: 1px solid var(--border-color);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.5rem;
    color: var(--text-muted);
}

.news-action {
    font-size: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .dual-section .container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dual-section {
        padding: 0.75rem 0;
    }
    
    .section-block {
        padding: 0.5rem;
    }
    
    .section-header-dual {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .streamers-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .streamer-showcase-card {
        height: 50px;
    }
    
    .news-showcase-card:not(.featured) {
        flex-direction: column;
    }
    
    .news-showcase-card:not(.featured) .news-showcase-image {
        width: 100%;
        height: 40px;
    }
}
    
    .news-showcase-card:not(.featured) .news-showcase-image {
        width: 100%;
        height: 50px;
    }
}
/* =============================================
   YENİ CONTENT SECTIONS - YAYINCI & HABERLER
   ============================================= */
.content-sections {
    padding: 40px 0;
    background: var(--bg-dark);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-title-new {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon-new {
    font-size: 1.2rem;
    color: var(--primary);
}

.section-title-new h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.view-all-link-new {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link-new:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* YAYINCI KARTLARI */
.streamers-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.streamer-card-new {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.streamer-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.streamer-image-new {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.streamer-card-new:hover .streamer-image-new {
    border-color: var(--primary);
}

.streamer-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-placeholder-new {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.streamer-info-new {
    text-align: center;
}

.streamer-info-new h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 8px 0;
}

.streamer-info-new p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.streamer-link-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* HABER KARTLARI */
.news-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.news-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-image-new {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-new:hover .news-image-new img {
    transform: scale(1.05);
}

.news-category-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content-new {
    padding: 20px;
}

.news-content-new h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.news-content-new p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.news-meta-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.news-date-new {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-read-new {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .content-sections {
        padding: 30px 0;
    }
    
    .content-section {
        margin-bottom: 30px;
    }
    
    .section-header-new {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .streamers-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .news-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-image-new {
        height: 150px;
    }
}