﻿      :root {
            --primary: #2c3e50;
            --secondary: #34495e;
            --accent: #e74c3c;
            --accent-light: #ff6b6b;
            --jungle: #27ae60;
            --jungle-light: #2ecc71;
            --blue: #3498db;
            --blue-light: #2980b9;
            --orange: #e67e22;
            --orange-light: #d35400;
            --purple: #9b59b6;
            --purple-light: #8e44ad;
            --text-light: #ecf0f1;
            --text-gray: #bdc3c7;
            --bg-dark: #1a1a1a;
            --bg-light: #2d2d2d;
            --border: #4a6572;
            --shadow: rgba(0, 0, 0, 0.1);
            --shadow-hover: rgba(0, 0, 0, 0.2);
        }

  /* Genel stiller */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 10px;
    margin: 0;
}

/* PC için (min-width: 1025px) */
@media (min-width: 1025px) {
    body {
        padding: 35px;
    }
}

        /* Top Bar - Hem PC hem Mobilde */
        .top-bar {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }
        /* --- SADECE PC'DE TOP-BAR SAĞA HİZALAMA --- */
@media (min-width: 1025px) {
    .top-bar .container {
        justify-content: flex-end; /* Tüm içerikleri sağa hizala */
    }

    .top-bar .pc-links {
        justify-content: flex-end; /* Linkleri de sağa hizala */
        margin-left: auto;
    }
}

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar .pc-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .top-bar .mobile-links {
            display: none;
        }

        .top-bar a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            white-space: nowrap;
        }

        .top-bar a:hover {
            background: rgba(52, 152, 219, 0.3);
            color: var(--blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .top-bar .separator {
            color: var(--text-gray);
            font-size: 12px;
        }

        /* Site Header */
        .site-header {
            background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
            padding: 12px 0;
            border-bottom: 2px solid var(--accent);
            box-shadow: 0 2px 10px var(--shadow);
        }

        .site-header .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .site-header-side {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .site-header-slogan {
            color: var(--text-gray);
            font-size: 12px;
            font-weight: 300;
            margin: 0;
        }

        .site-header-center {
            width: 100%;
            max-width: 400px;
        }

        .search-box {
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .search-box:focus-within {
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
            border-color: var(--blue);
            transform: translateY(-1px);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 13px;
            width: 100%;
            outline: none;
            padding: 4px;
        }

        .search-box input::placeholder {
            color: var(--text-gray);
        }

        .search-box .icon {
            color: var(--blue);
            margin-right: 6px;
            width: 16px;
            height: 16px;
            transition: all 0.3s ease;
        }

        .search-box:focus-within .icon {
            color: var(--blue-light);
            transform: scale(1.1);
        }

        /* Buton Stilleri */
        .btn {
            border-radius: 18px;
            padding: 8px 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-jungle {
            background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
            color: white;
            box-shadow: 0 2px 5px rgba(39, 174, 96, 0.3);
        }

        .btn-jungle:hover {
            background: linear-gradient(135deg, var(--jungle-light), var(--jungle));
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
        }

        .btn-blue {
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            color: white;
            box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
        }

        .btn-blue:hover {
            background: linear-gradient(135deg, var(--blue-light), var(--blue));
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }

        .btn-cart {
            background: var(--accent);
            color: white;
            padding: 8px;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
        }

        .btn-cart:hover {
            background: var(--accent-light);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
        }

        .cart-icon {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .btn-cart:hover .cart-icon {
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--jungle);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-cart:hover .cart-count {
            transform: scale(1.1);
            background: var(--jungle-light);
        }

        /* Top Navigation - Sadece PC'de */
        .top-navigation {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            padding: 0;
            margin: 12px 0;
            border: 1px solid var(--border);
            overflow: hidden;
            display: none;
            box-shadow: 0 2px 10px var(--shadow);
        }

        .top-navigation a {
            color: var(--text-light);
            text-decoration: none;
            padding: 12px 15px;
            font-weight: 600;
            font-size: 13px;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .top-navigation a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .top-navigation a:hover::before {
            left: 100%;
        }

        .top-navigation a:last-child {
            border-bottom: none;
        }

        .top-navigation a:hover {
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            color: white;
            padding-left: 20px;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .top-navigation a.games {
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            color: white;
        }

        .top-navigation a.games:hover {
            background: linear-gradient(135deg, var(--purple-light), var(--purple));
        }

        .top-navigation a.green {
            background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
            color: white;
        }

        .top-navigation a.green:hover {
            background: linear-gradient(135deg, var(--jungle-light), var(--jungle));
        }

        .top-navigation a.payment {
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            color: white;
            font-weight: 700;
        }

        .top-navigation a.payment:hover {
            background: linear-gradient(135deg, var(--orange-light), var(--orange));
        }

        /* Badge Stili */
        .badge {
            background: var(--accent);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 9px;
            font-weight: 700;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        a:hover .badge {
            animation: none;
            transform: scale(1.1);
            background: var(--accent-light);
        }

        .container {
            max-width: 100%;
            padding: 0 15px;
        }

        /* PC için Yatay Düzen */
        @media (min-width: 1024px) {
            .site-header .container {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .site-header-center {
                width: auto;
                flex: 1;
                max-width: 350px;
                margin: 0 15px;
                order: 0;
            }
            
            .top-navigation {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .top-navigation a {
                border-bottom: none;
                border-right: 1px solid var(--border);
                flex: 1;
                min-width: auto;
                justify-content: center;
                padding: 10px 12px;
                font-size: 12px;
            }
            
            .top-navigation a:last-child {
                border-right: none;
            }
            
            .top-navigation a:hover {
                padding-left: 12px;
                transform: translateY(-2px);
            }

            /* PC'de satış yap ve sepet göster */
            .btn-sell, .btn-cart {
                display: flex !important;
            }

            /* PC'de Giriş Yap butonunu gizle */
            .top-bar .mobile-links {
                display: none !important;
            }

            .top-bar .pc-links {
                display: flex !important;
            }
        }

        /* Tablet için Optimizasyon */
        @media (min-width: 768px) and (max-width: 1023px) {
            .top-navigation a {
                font-size: 12px;
                padding: 10px 12px;
            }
            
            .site-header-side {
                flex-direction: column;
                gap: 8px;
            }
        }

/* MOBİL TASARIM - KESİN ÇÖZÜM */
@media (max-width: 1023px) {
    .top-navigation {
        display: none;
    }
    
    /* HEADER CONTAINER */
    .site-header .container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        min-height: 60px;
    }
    
    /* SOL TARAF - Logo ve altında yazı */
    .site-header-side.left {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }
    
    .site-header-side.left a picture img {
        width: 140px !important;
        height: auto !important;
        margin-bottom: 4px;
    }
    
    .site-header-slogan {
        font-size: 11px;
        color: var(--text-gray);
        line-height: 1.2;
        white-space: nowrap;
    }
    
    /* SAĞ TARAF - Butonlar */
    .site-header-side.right {
        order: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }
    
    /* GİRİŞ/KAYIT BUTONUNU MOBİLDE GİZLE */
    .site-header-side.right .btn-blue {
        display: none !important;
    }
    
    /* DİĞER BUTONLARI GİZLE */
    .btn-sell, .btn-cart {
        display: none !important;
    }
    
    /* ARAMA KUTUSU - EN ALTA */
    .site-header-center {
        order: 3;
        width: 100%;
        margin-top: 12px;
    }
    
    .search-box {
        width: 100%;
        background: var(--secondary);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 10px 15px;
    }
    
    .search-box input {
        font-size: 14px;
        padding: 5px;
        color: var(--text-light);
    }
    
    .search-box input::placeholder {
        color: var(--text-gray);
    }

    /* MOBİL TOP BAR - KESİN GÖSTERİM */
    .top-bar {
        padding: 8px 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .top-bar .pc-links {
        display: none !important;
    }

    .top-bar .mobile-links {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar a {
        font-size: 12px;
        padding: 6px 10px;
        background: rgba(255,255,255,0.15);
        display: block !important;
        visibility: visible !important;
    }
}

/* KÜÇÜK MOBİL AYARLARI */
@media (max-width: 480px) {
    .site-header .container {
        gap: 8px;
        min-height: 55px;
    }
    
    .site-header-side.left a picture img {
        width: 120px !important;
    }
    
    .site-header-slogan {
        font-size: 10px;
    }

    .top-bar a {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* ÇOK KÜÇÜK EKRAN */
@media (max-width: 360px) {
    .site-header-side.left a picture img {
        width: 110px !important;
    }
    
    .site-header-slogan {
        font-size: 9px;
    }

    .top-bar a {
        font-size: 10px;
        padding: 4px 6px;
    }
}

/* HEADER GENEL STİL */
.site-header {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
    padding: 10px 0;
    border-bottom: 2px solid var(--accent);
}
/* Genel Stiller */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3a6b;
    --accent-color: #ff6b00;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #fff;       /* Yazılar beyaz */
    --text-light: #ccc;
    --border-color: #444;      /* Kutuların kenar rengi koyu ton */
    --footer-bg: #181A20;      /* Orta bölüm ve kutular */
    --footer-text: #fff;
    --footer-link: #fff;
    --box-bg: #181A20;         /* Üst bölüm kutular */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SVG İkon Stilleri */
.icon {
    width: 48px;
    height: 48px;
    fill: var(--accent-color);
    margin-bottom: 15px;
}

/* Üst Bölüm */
.site-footer-top {
    background-color: var(--box-bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.site-footer-top-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.site-footer-top-box:hover {
    transform: translateY(-5px);
}

.site-footer-top-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.site-footer-top-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* PC için yatay üst footer */
@media (min-width: 1025px) {
    .site-footer-top .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .site-footer-top-box {
        flex: 1;
        margin: 0 10px;
    }
}

/* Orta Bölüm */
.site-footer-middle {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0;
}

.site-footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.site-footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--footer-link);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    display: inline-block;
}

.site-footer-links h5 {
    margin-bottom: 8px;
}

.site-footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.site-footer-links a:hover {
    color: var(--accent-color);
}

/* İletişim Bölümü */
.site-footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e55a00;
}

.btn .icon {
    width: 20px;
    height: 20px;
    fill: white;
    margin-bottom: 0;
    margin-right: 8px;
}

.phone-link, .mail-link {
    display: inline-flex;
    align-items: center;
    color: var(--footer-link);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover, .mail-link:hover {
    color: var(--accent-color);
}

.phone-link .icon, .mail-link .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-bottom: 0;
    margin-right: 8px;
}

/* Sosyal Medya Bölümü */
.site-footer-socials {
    text-align: center;
}

.site-footer-socials h6 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--footer-link);
}

.site-footer-socials-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.site-footer-socials-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.site-footer-socials-list a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.site-footer-socials-list .icon {
    width: 20px;
    height: 20px;
    fill: var(--footer-link);
    margin-bottom: 0;
    transition: fill 0.3s ease;
}

.site-footer-socials-list a:hover .icon {
    fill: white;
}

/* Alt Bölüm */
.site-footer-bottom {
    background-color: #111;
    color: var(--footer-text);
    padding: 20px 0;
    font-size: 0.85rem;
}

.site-footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer-bottom a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-bottom a:hover {
    color: var(--accent-color);
}

.text-left img, .text-right img {
    display: block;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .site-footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .site-footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-footer-top .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .site-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .site-footer-top .container {
        grid-template-columns: 1fr;
    }
    
    .site-footer-links {
        grid-template-columns: 1fr;
    }
    
    .site-footer-socials-list {
        flex-wrap: wrap;
    }
    
    .text-center {
        text-align: center;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lazy-background.visible {
    animation: fadeIn 0.8s ease-out;
}

/* Genel Body ve Header */
body {
    background-color: #171A21;
}

@media (min-width: 1025px) {
    body {
        background-color: #171A21;
    }

    .site-header {
        background-color: #171A21;
    }
}