        /* ===== GLOBAL VARIABLES ===== */
        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-card: #161622;
            --bg-card-hover: #1c1c2e;
            --border-color: #2a2a40;
            --accent: #f59e0b;
            --accent-glow: rgba(245, 158, 11, 0.3);
            --accent-hover: #fbbf24;
            --text-primary: #e4e4e7;
            --text-secondary: #CBD5E1;
            /* Lighter gray for better contrast */
            --green: #22c55e;
            --red: #ef4444;
            --blue: #3b82f6;
            --purple: #a855f7;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scrollbar-color: #374151 #0f141e;
            scrollbar-width: thin;
        }

        /* Modern Dark Scrollbars (Webkit) */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0f141e;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #374151;
            border-radius: 4px;
            border: 2px solid #0f141e;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #4b5563;
        }

        /* ===== ACCOUNT CARDS ===== */
        .account-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .account-card:hover {
            transform: translateY(-10px);
            border-color: rgba(245, 158, 11, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
            background: var(--bg-card-hover);
        }

        .card-img-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 345 / 325;
            overflow: hidden;
            background: #000;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .account-card:hover .card-img-wrapper img {
            transform: scale(1.1) rotate(1deg);
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            background: transparent;
            border-top: 1px solid var(--border-color);
            padding: 5rem 0;
            margin-top: 2rem;
        }

        .feature-box {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 24px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.03);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            line-height: 1;
            background: rgba(245, 158, 11, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }

        .feature-content h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
        }

        .feature-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 3rem 0;
            }
            .feature-box {
                padding: 1.25rem 0.75rem;
                gap: 0.75rem;
                border-radius: 16px;
            }
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                border-radius: 12px;
            }
            .feature-content h3 {
                font-size: 0.85rem;
                margin-bottom: 0.4rem;
            }
            .feature-content p {
                font-size: 0.7rem;
                line-height: 1.4;
            }
        }

        .card-img-overlay-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%);
            pointer-events: none;
        }

        .card-rank-badge {
            background: rgba(10, 10, 15, 0.7);
            backdrop-filter: blur(12px);
            padding: 0.4rem 0.8rem;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            z-index: 5;
            position: absolute;
            top: 10px;
            right: 10px;
            /* Index/Ilanlar ile sync: sağ üst */
        }

        .card-prime-badge {
            background: #10b981;
            color: #fff !important;
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 10;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 4px;
            border: none;
            text-transform: uppercase;
        }

        /* ===== PREMIUM CARD STATS GRID & CIRCLE ===== */
        .card-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.25rem;
        }

        .steam-level-circle-sm {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--lvl-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            background: rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.03);
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .stat-label {
            font-size: 0.65rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            font-weight: 600;
        }

        .stat-value {
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .card-medal-row {
            display: flex;
            gap: 6px;
            margin-bottom: 1.25rem;
            padding: 8px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 42px;
            align-items: center;
        }

        .card-medal-item {
            width: 28px;
            height: 28px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
            transition: transform 0.2s;
        }

        .card-medal-item:hover {
            transform: scale(1.2) translateY(-2px);
        }

        .card-body-custom {
            padding: 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title-custom {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            min-height: 48px;
        }

        .premium-card-price {
            font-family: 'Rajdhani', sans-serif !important;
            font-weight: 700 !important;
            font-size: 1.6rem !important;
        }

        .premium-card-label {
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-footer-custom {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .price-wrapper {
            display: flex;
            flex-direction: column;
        }

        .old-price {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-decoration: line-through;
        }

        .current-price {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--accent);
        }

        .current-price .currency {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .btn-detail {
            background: linear-gradient(135deg, var(--accent), #d97706);
            color: #0a0a0f !important;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.5rem 1.2rem;
            border-radius: 10px;
            border: none;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .btn-detail:hover {
            background: linear-gradient(135deg, var(--accent-hover), #f59e0b);
            color: #0a0a0f !important;
            box-shadow: 0 4px 20px var(--accent-glow);
            transform: translateY(-1px);
        }

        /* ===== DESCRIPTION SHOW MORE (MOBILE) ===== */
        @media (max-width: 991px) {
            .description-wrapper {
                position: relative;
                margin-bottom: 3rem;
            }
            .description-content {
                max-height: 280px; /* Yaklaşık Madalyalar kısmına denk gelecek yükseklik */
                overflow: hidden;
                transition: max-height 0.5s ease;
                position: relative;
                padding-bottom: 40px !important;
            }
            .description-content.expanded {
                max-height: none !important;
                padding-bottom: 0 !important;
            }
            .description-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100px;
                background: linear-gradient(transparent, #131a28);
                pointer-events: none;
                transition: opacity 0.3s;
                z-index: 2;
            }
            .description-content.expanded .description-overlay {
                opacity: 0;
            }
            .btn-show-more {
                position: absolute;
                bottom: -40px;
                left: 50%;
                transform: translateX(-50%);
                background: #1e293b;
                border: 1px solid #334155;
                color: var(--accent);
                font-weight: 700;
                font-size: 0.85rem;
                padding: 0.5rem 1.5rem;
                border-radius: 50px;
                z-index: 10;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            }
        }
        @media (min-width: 992px) {
            .btn-show-more, .description-overlay {
                display: none !important;
            }
        }

        /* ===== NAVBAR ===== */
        .navbar-custom {
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand-custom {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--accent) !important;
            letter-spacing: 1px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .brand-slogan {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6) !important;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: 0.5px;
            margin-top: -2px;
        }

        .nav-link-custom {
            color: var(--text-secondary) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link-custom:hover::after {
            width: 70%;
        }

        .nav-link-custom:hover {
            color: var(--accent) !important;
            background: rgba(245, 158, 11, 0.05);
        }

        /* ===== USER ACTIONS GLASS CONTAINER ===== */
        .user-actions-glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50px;
            padding: 4px 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
        }

        @media (max-width: 576px) {
            .navbar-custom .container {
                padding-left: 10px;
                padding-right: 10px;
            }

            .navbar-brand-custom img {
                height: 80px !important;
            }

            .brand-slogan {
                font-size: 0.6rem;
            }

            .user-actions-glass {
                padding: 4px 6px;
                gap: 4px;
            }
        }

        /* Fiyat fontunun gizli boşluklarını siler (Her ekran için güvenli) */
        .price-tag {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #10b981;
            line-height: 1;
            margin-bottom: 0;
        }

        /* Layout Panels */
        .content-panel {
            background-color: #131a28;
            border: 1px solid #1f2937;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .panel-description-mobile {
            display: block;
        }

        .panel-title {
            color: #f59e0b;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            border-bottom: 1px solid #2d3748;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        /* Slider / Main Image Area */
        .main-image-container {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #0b0f19;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #1f2937;
            margin-bottom: 1rem;
            position: relative;
        }

        .main-image-container img {
            max-width: 95%;
            max-height: 95%;
            object-fit: contain;
            position: relative;
            z-index: 2;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Properties Grid */
        .prop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
        }

        .prop-item {
            background-color: #1a2235;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #2d3748;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .prop-label {
            font-size: 0.75rem;
            color: #CBD5E1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.4rem;
        }

        .prop-value {
            font-weight: 600;
            font-size: 1rem;
            color: #fff;
        }

        .prop-value.bad {
            color: #ef4444;
        }

        .prop-value.good {
            color: #10b981;
        }

        /* Steam Level Badge CSS */
        .steam-level-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 3px solid;
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            background-color: transparent;
        }

        /* Steam Games Carousel / Grid */
        .games-grid {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 1.25rem;
            scrollbar-width: thin;
            scrollbar-color: #4b5563 #111827;
            scroll-snap-type: x mandatory; /* Smooth snap for mobile */
            -webkit-overflow-scrolling: touch;
        }

        .games-grid::-webkit-scrollbar {
            height: 6px;
        }

        .games-grid::-webkit-scrollbar-thumb {
            background-color: #374151;
            border-radius: 10px;
        }

        .game-card {
            flex: 0 0 auto;
            width: 170px;
            background-color: #1a2235;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2d3748;
            transition: all 0.3s ease;
            scroll-snap-align: start;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--blue);
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
        }

        .game-card img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .game-info {
            padding: 0.75rem;
        }

        .game-title {
            font-size: 0.82rem;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.3rem;
            color: #f8fafc;
        }

        .game-hours {
            font-size: 0.72rem;
            color: #94a3b8;
            font-weight: 500;
        }

        /* CS2 Inventory Display */
        .inv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 0.75rem;
            max-height: 400px;
            overflow-y: auto;
            padding: 0.5rem;
            padding-right: 0.75rem;
            scrollbar-width: thin;
        }

        .inv-item {
            background: linear-gradient(145deg, #1f2937, #0f172a);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 0.75rem;
            text-align: center;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .inv-item:hover {
            transform: translateY(-4px);
            z-index: 5;
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }

        .inv-item img {
            width: 100%;
            max-width: 90px;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
            margin: 0 auto;
        }

        .inv-item-name {
            font-size: 0.68rem;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0.6rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 1.8em;
        }

        /* Mobile Specific Grid Adjustments */
        @media (max-width: 768px) {
            .content-panel {
                padding: 1rem;
                margin-bottom: 1rem;
            }
            .panel-title {
                margin-bottom: 0.75rem;
                font-size: 1.2rem;
            }
            .panel-description-mobile {
                display: none; /* Hide long descriptions on mobile */
            }
            
            /* Properties Grid Optimization */
            .prop-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
            .prop-item {
                padding: 0.5rem 0.4rem;
                border-radius: 8px;
                min-height: 60px;
            }
            .prop-label {
                font-size: 0.62rem;
                margin-bottom: 0.2rem;
            }
            .prop-value {
                font-size: 0.82rem;
            }
            .steam-level-circle {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
                border-width: 2px;
            }

            .game-card {
                width: 140px;
            }
            .game-card img {
                height: 65px;
            }
            .game-info {
                padding: 0.5rem;
            }
            .inv-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.4rem;
                padding-right: 0.3rem;
                max-height: 220px; /* Reduce initial height */
            }
            .inv-item {
                padding: 0.4rem;
                border-radius: 10px;
            }
            .inv-item img {
                max-width: 55px;
            }
            .inv-item-name {
                font-size: 0.58rem;
                margin-top: 0.3rem;
            }
            .scroll-hint {
                display: none !important;
            }

            /* Account Card Optimization for 2-column mobile */
            .account-card {
                border-radius: 12px;
            }
            .card-body-custom {
                padding: 0.75rem;
            }
            .card-title-custom {
                font-size: 0.75rem;
                margin-bottom: 0.5rem;
                min-height: 40px;
                line-height: 1.3;
            }
            .card-medal-row {
                margin-bottom: 0.75rem;
                padding: 4px;
                min-height: 32px;
                gap: 4px;
            }
            .card-medal-item {
                width: 20px;
                height: 20px;
            }
            .card-stats {
                gap: 0.5rem;
                padding-top: 0.75rem;
                grid-template-columns: 1fr 1fr;
            }
            .stat-item {
                padding: 0.25rem 0.4rem;
                gap: 0.3rem;
            }
            .stat-label {
                font-size: 0.55rem;
            }
            .stat-value {
                font-size: 0.7rem;
            }
            .steam-level-circle-sm {
                width: 20px;
                height: 20px;
                font-size: 0.6rem;
            }
            .card-footer-custom {
                padding-top: 0.5rem;
            }
            .premium-card-price {
                font-size: 1.1rem !important;
            }
            .old-price {
                font-size: 0.65rem;
            }
            .btn-detail {
                padding: 0.4rem 0.75rem;
                font-size: 0.7rem;
                border-radius: 6px;
            }
            .card-rank-badge {
                padding: 0.25rem 0.5rem;
                font-size: 0.6rem;
                top: 5px;
                right: 5px;
            }
            .card-prime-badge, .card-bansiz-badge {
                padding: 2px 6px;
                font-size: 0.6rem;
                bottom: 5px;
            }
            .card-bansiz-badge {
                left: 5px;
            }
            .card-prime-badge {
                right: 5px;
            }
        }

        .col-border-right {
            border-right: 1px solid #1f2937;
        }

        @media (max-width: 991px) {
            .col-border-right {
                border-right: none;
                border-bottom: 1px solid #1f2937;
                margin-bottom: 1rem;
                padding-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .main-image-container {
                height: 300px !important;
            }
        }

        /* Skin Modal Customization */
        .modal-content.dark-modal {
            background-color: #131a28;
            color: #f8f9fa;
            border: 1px solid #374151;
        }

        .dark-modal .modal-header {
            border-bottom: 1px solid #1f2937;
            background: rgba(11, 15, 25, 0.9);
        }

        .dark-modal .modal-footer {
            border-top: 1px solid #1f2937;
        }

        .dark-modal .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .skin-modal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 15px;
            padding: 1rem 0;
        }

        .skin-modal-grid .inv-item {
            width: 100%;
        }

        /* ===== FEATURES & FOOTER ===== */
        .features-section {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 5rem 0;
            margin-top: 2rem;
        }

        .feature-box {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: #131a28;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            border-color: rgba(245, 158, 11, 0.3);
            background: #161e2e;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            line-height: 1;
            background: rgba(245, 158, 11, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }

        .feature-content h5 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
        }

        .feature-content p {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
            margin: 0;
        }

        .footer-custom {
            background: #0b0f19;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent);
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: #94a3b8;
            font-size: 0.9rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s;
            opacity: 0.85;
        }

        .footer-link:hover {
            opacity: 1;
            color: var(--accent);
        }

        @keyframes blink-green {
            0% {
                opacity: 1;
                color: #22c55e;
                text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
            }

            50% {
                opacity: 0.4;
                color: #16a34a;
                text-shadow: none;
            }

            100% {
                opacity: 1;
                color: #22c55e;
                text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
            }
        }

        .blink-text-green {
            animation: blink-green 1.2s infinite;
            font-weight: bold;
            color: #22c55e;
        }

        /* CS2 Madalya Uyarı Animasyonları */
        @keyframes blink-medal-green {
            0% {
                opacity: 1;
                color: #22c55e;
                text-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
            }

            50% {
                opacity: 0.35;
                color: #16a34a;
                text-shadow: none;
            }

            100% {
                opacity: 1;
                color: #22c55e;
                text-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
            }
        }

        @keyframes blink-medal-orange {
            0% {
                opacity: 1;
                color: #f97316;
                text-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
            }

            50% {
                opacity: 0.35;
                color: #c2410c;
                text-shadow: none;
            }

            100% {
                opacity: 1;
                color: #f97316;
                text-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
            }
        }

        @keyframes blink-medal-white {
            0% {
                opacity: 1;
                color: #e5e7eb;
                text-shadow: 0 0 8px rgba(229, 231, 235, 0.4);
            }

            50% {
                opacity: 0.35;
                color: #9ca3af;
                text-shadow: none;
            }

            100% {
                opacity: 1;
                color: #e5e7eb;
                text-shadow: 0 0 8px rgba(229, 231, 235, 0.4);
            }
        }

        .blink-medal-green {
            animation: blink-medal-green 1.4s ease-in-out infinite;
            font-weight: 700;
        }

        .blink-medal-orange {
            animation: blink-medal-orange 1.4s ease-in-out infinite;
            font-weight: 700;
        }

        .blink-medal-white {
            animation: blink-medal-white 1.4s ease-in-out infinite;
            font-weight: 700;
        }

        /* Modernized Scrollbar for Notification Dropdown */
        .notif-scroll::-webkit-scrollbar {
            width: 5px;
        }

        .notif-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
        }

        .notif-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .notif-scroll::-webkit-scrollbar-thumb:hover {
            background: #f59e0b;
        }

        .text-truncate-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-bansiz-badge {
            background: #0a0a0f;
            color: #ffffff !important;
            position: absolute;
            bottom: 10px;
            left: 10px;
            z-index: 10;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 4px;
            border: 1px solid #ffffff;
            text-transform: uppercase;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
        }


        /* Mobil Sticky Buy Bar */
        .sticky-mobile-buy {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 29, 39, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid #2d3240;
            padding: 12px 20px;
            z-index: 999;
            padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        }

        @media (max-width: 768px) {
            #whatsapp-btn {
                bottom: 105px !important;
                right: 20px !important;
                width: 50px !important;
                height: 50px !important;
            }

            /* Chat widget positioning - Corrected selectors from chat_widget.php */
            #cw-floating-btn {
                bottom: 105px !important;
                z-index: 1010 !important;
            }

            #cw-container {
                bottom: 100px !important; /* WhatsApp butonu ile hizalandı (üst üste değil yan yanalar) */
                z-index: 10000 !important;
                max-height: calc(100dvh - 110px) !important;
            }
        }

        @keyframes wa-pulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
            }

            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12);
            }
        }


        .review-track {
            display: flex;
            gap: 16px;
            padding: 0 1rem 1rem;
            width: max-content;
            animation: scroll-reviews 55s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        .review-track:hover {
            animation-play-state: paused;
        }

        .review-track:active {
            animation-play-state: paused;
        }

        @keyframes scroll-reviews {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ============================================================
   DESIGN FIXES — Desktop (D-01 ~ D-12) & Mobile (M-01 ~ M-12)
   ============================================================ */

        /* FIX: D-01 — H1 başlık taşma */
        .h3.fw-bold,
        h1.h3.fw-bold {
            word-break: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }

        /* Fiyat ve Buton Kapsayıcısı */
        .detail-price-cta-wrapper {
            display: flex;
            align-items: center;
            /* Dikey eksende tam ortalar */
            justify-content: flex-end;
            /* Masaüstünde elementleri en sağa yaslar */
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 8px;
            /* Altındaki butonlarla arasına nefes payı bırakır */
        }

        /* Satın Al Butonu İçi Flex Ayarı */
        .detail-price-cta-wrapper .btn-warning {
            min-width: 160px;
            height: 48px;
            display: inline-flex !important;
            /* Bootstrap d-block sınıfını ezer */
            align-items: center;
            /* İkon ve metni dikeyde ortalar */
            justify-content: center;
            /* İkon ve metni yatayda ortalar */
            padding-top: 0 !important;
            /* Bootstrap py-2 çakışmasını engeller */
            padding-bottom: 0 !important;
        }

        /* FIX: D-03 — Görsel boşlukları */
        .gallery-thumbs-row {
            gap: 12px !important;
        }

        .main-image-container {
            margin-bottom: 12px;
        }

        /* FIX: D-04 — Breadcrumb */
        .detail-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            padding: 10px 0;
            font-size: 0.82rem;
            color: #94a3b8;
            border-bottom: 1px solid #1f2937;
            margin-bottom: 1rem;
        }

        .detail-breadcrumb a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s;
        }

        .detail-breadcrumb a:hover {
            color: #f59e0b;
        }

        .detail-breadcrumb .breadcrumb-separator {
            color: #4b5563;
            margin: 0 6px;
        }

        .detail-breadcrumb .breadcrumb-id {
            color: #64748b;
            font-size: 0.75rem;
            font-weight: 500;
            text-align: right;
        }

        /* FIX: D-05 — Hesap Özeti zebra striping + ellipsis */
        .prop-grid .prop-item:nth-child(even) {
            background: #1C2333;
        }

        .prop-grid .prop-value,
        .prop-grid .prop-label {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 300px;
        }

        /* FIX: D-06 — Madalya Grid */
        .medal-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 12px;
            justify-items: center;
        }

        /* FIX: D-07 — Silah Kartları */
        .inv-item {
            display: flex;
            flex-direction: column;
            min-height: 120px;
            height: 100%;
        }

        .inv-item img {
            flex-shrink: 0;
        }

        /* FIX: D-09 — Footer padding for sticky bar clearance */
        .footer-custom {
            padding-bottom: 80px !important;
        }

        /* FIX: D-10 — Accordion animasyon (Bootstrap override) */
        #faqAccordion .accordion-collapse {
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
        }

        /* FIX: D-11 — Footer Grid */
        @media (min-width: 768px) {
            .footer-links-grid {
                display: grid !important;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                justify-items: center;
            }
        }

        /* FIX: D-12 — Güvenlik Rozetleri Kontrast */
        .security-badge-high-contrast {
            background-color: #166534 !important;
            border-color: #166534 !important;
        }

        .security-badge-high-contrast,
        .security-badge-high-contrast .prop-value {
            color: #FFFFFF !important;
            font-weight: 600;
        }

        /* ============================================================
   MOBILE FIXES — @media (max-width: 767px)
   ============================================================ */

        /* FIX: M-01 — Hamburger Menü */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: currentColor;
            color: #e4e4e7;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: #12121a;
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 60px 24px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
            border-left: 1px solid #2a2a40;
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav .mobile-nav-link {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-nav .mobile-nav-link:hover,
        .mobile-nav .mobile-nav-link:active {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
        }

        .mobile-nav-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: transparent;
            border: none;
            color: #94a3b8;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px;
            line-height: 1;
        }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .nav-overlay.open {
            display: block;
        }

        @media (max-width: 767px) {

            /* FIX: M-01 — Show hamburger, hide desktop nav */
            .hamburger {
                display: flex;
            }

            .nav-link-custom.d-none.d-md-inline-block {
                display: none !important;
            }

            /* FIX: M-02 — Başlık Font Boyutu */
            h1.h3.fw-bold,
            .h3.fw-bold {
                font-size: clamp(16px, 4vw, 24px) !important;
                line-height: 1.3;
            }

            /* FIX: M-03 — Buton Boyutları */
            .detail-buttons-mobile {
                flex-direction: column !important;
                gap: 10px !important;
            }

            .detail-buttons-mobile .btn,
            .detail-buttons-mobile a.btn {
                width: 100% !important;
                min-height: 48px;
                font-size: 16px;
            }

            /* FIX: M-04 — Paylaşım Satırı */
            .share-row-mobile {
                flex-wrap: wrap;
                gap: 8px;
            }

            .share-row-mobile .btn,
            .share-row-mobile a.btn {
                flex: 1 1 auto;
                min-width: 140px;
            }

            /* FIX: M-05 — Mobil yatay kaydırma iptal edildi, masaüstü korundu */
            .prop-grid-scroll-wrapper {
                /* Kaydırmayı mobilde tamamen iptal eder */
                width: 100%;
            }

            .prop-grid-scroll-wrapper .prop-grid {
                min-width: auto !important;
                /* Mobildeki 500px zorunluluğunu kaldırır */
                width: 100%;
                /* Mobilde kutuların taşmaması için 180px yerine 140px sınırı koyuyoruz */
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.75rem;
            }

            /* FIX: M-06 — Madalya Grid Mobil */
            .medal-grid-layout {
                grid-template-columns: repeat(3, 1fr);
            }

            .medal-grid-layout .inv-item img {
                min-width: 60px;
                min-height: 60px;
            }

            /* FIX: M-08 — Lightbox Kapatma Butonu */
            #imageLightboxModal .btn-close {
                position: fixed !important;
                top: 16px !important;
                right: 16px !important;
                z-index: 1001 !important;
                background: rgba(0, 0, 0, 0.7) !important;
                color: #fff !important;
                border-radius: 50% !important;
                width: 40px !important;
                height: 40px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                opacity: 1 !important;
                filter: invert(1) grayscale(100%) brightness(200%) !important;
                padding: 0 !important;
            }

            /* FIX: M-09 — SSS Dokunma Alanı */
            #faqAccordion .accordion-button {
                padding: 16px 12px !important;
                min-height: 48px;
                width: 100%;
                text-align: left;
            }

            /* FIX: M-11 — Öneri Kartı İstatistikleri */
            .stat-label {
                font-size: 11px !important;
                white-space: normal !important;
                word-break: break-word;
            }

            .account-card {
                overflow: visible;
            }
        }

        /* FIX: M-07 — Silah Carousel Scroll İndicator (SORUN FIX) */
        .scroll-hint {
            display: block;
            width: 100%;
            text-align: center;
            font-size: 13px;
            color: #94A3B8;
            margin-top: 15px;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        /* FIX: M-12 — Chat Widget mobil konumu */
        @media (max-width: 767px) {
            #cw-floating-btn {
                bottom: 80px !important;
            }
        }

        /* FIX: prop-value tam metin — ellipsis kaldır (SORUN 4) */
        .prop-grid .prop-value,
        .prop-grid .prop-label {
            white-space: normal !important;
            overflow: visible !important;
            text-overflow: unset !important;
            word-break: break-word;
            max-width: 100%;
            display: block;
        }

        .prop-grid .prop-item {
            overflow: visible;
        }

        /* DÜZELTME 3 — Mobil scroll wrapper (M-05 revize) */
        .prop-grid-scroll-wrapper {
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        /* Üst panel'in overflow'unu serbest bırak */
        .content-panel {
            overflow: visible;
        }

        .detail-breadcrumb span:last-child {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 200px;
            /* Ekrana göre daraltacak */
            display: inline-block;
            vertical-align: bottom;
        }

        /* ===== DİNAMİK MADALYA NABIZ (PULSE) ANİMASYONLARI ===== */
        .medal-pulse-blue {
            background-color: #3b82f6 !important;
            animation: pulse-blue 2s infinite;
        }

        .medal-pulse-purple {
            background-color: #a855f7 !important;
            animation: pulse-purple 2s infinite;
        }

        .medal-pulse-gold {
            background-color: #f59e0b !important;
            color: #000 !important;
            /* Altın renginde yazının okunabilmesi için siyah font */
            animation: pulse-gold 1.5s infinite;
        }

        .medal-pulse-red {
            background-color: #ef4444 !important;
            animation: pulse-red 1s infinite;
        }

        /* Nabız Efekti Keyframeleri */
        @keyframes pulse-blue {
            0% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }

        @keyframes pulse-purple {
            0% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(168, 85, 247, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
            }
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.9);
            }

            70% {
                box-shadow: 0 0 0 18px rgba(239, 68, 68, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }