:root {
            --cs-orange: #f7931a;
            --cs-dark: #1a1a1a;
            --cs-gray: #2d2d2d;
            --cs-light-gray: #4a4a4a;
        }
        
        body {
            color: #e0e0e0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        .skin-card {
            background-color: var(--cs-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--cs-light-gray);
            height: 100%;
        }
        
        .skin-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--cs-orange);
        }
        
        .skin-card-header {
            height: 200px;
            overflow: hidden;
            position: relative;
            background-color: #000;
        }
        
        .skin-card-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        
        .skin-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .skin-card:hover .skin-card-video {
            display: block;
        }
        
        .skin-card:hover .skin-card-image {
            display: none;
        }
        
        .skin-card-body {
            padding: 1.25rem;
        }
        
        .skin-name {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .skin-weapon {
            color: var(--cs-orange);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .skin-price {
            color: #4CAF50;
            font-weight: bold;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .btn-buy {
            background-color: var(--cs-orange);
            border: none;
            color: white;
            width: 100%;
            padding: 0.6rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn-buy:hover {
            background-color: #d97c07;
            color: white;
        }
        
        .btn-owned {
            background-color: var(--cs-light-gray);
            border: none;
            color: #aaa;
            width: 100%;
            padding: 0.6rem;
            font-weight: bold;
            cursor: not-allowed;
        }
        
        .filter-section {
            background-color: var(--cs-gray);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--cs-light-gray);
        }
        
        .filter-title {
            color: var(--cs-orange);
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .form-check-input:checked {
            background-color: var(--cs-orange);
            border-color: var(--cs-orange);
        }
        
        .form-range::-webkit-slider-thumb {
            background-color: var(--cs-orange);
        }
        
        .form-range::-moz-range-thumb {
            background-color: var(--cs-orange);
        }
        
        .price-range-value {
            color: var(--cs-orange);
            font-weight: bold;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1612872087722-b0e0ff8f14c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 0;
            border-radius: 10px;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .hero-title {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            color: #e0e0e0;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .stats-box {
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            padding: 1rem;
            border-left: 4px solid var(--cs-orange);
        }
        
        .stats-number {
            color: var(--cs-orange);
            font-size: 2rem;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .stats-box {
                margin-bottom: 1rem;
            }
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            font-weight: bold;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(255, 65, 108, 0.4);
            border: 2px solid white;
        }

        .original-price {
            color: #ff6b6b;
            text-decoration: line-through;
            font-size: 1rem;
            font-weight: normal;
            margin-right: 10px;
        }

        .discount-price {
            color: #4CAF50;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .skin-card {
            position: relative; /* Добавляем это */
            background-color: var(--cs-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--cs-light-gray);
            height: 100%;
        }

        /* Дополнительный стиль для карточек со скидкой */
        .skin-card:hover .discount-badge {
            transform: scale(1.1);
            transition: transform 0.3s;
        }