        * {
            font-family: 'Vazirmatn', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            position: relative;
        }
        
        :root {
            --bg-primary: #0a0e17;
            --bg-secondary: #111827;
            --bg-card: #1a2332;
            --bg-card-hover: #243044;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border-color: rgba(0, 212, 255, 0.08);
            --border-hover: rgba(0, 212, 255, 0.2);
            --shadow-color: rgba(0, 212, 255, 0.05);
            --input-bg: rgba(255,255,255,0.05);
            --nav-bg: rgba(10, 14, 23, 0.95);
            --hero-overlay: rgba(0,0,0,0.3);
            --badge-bg: rgba(0,212,255,0.1);
            --section-alt: transparent;
            --input-border: rgba(255,255,255,0.1);
            --input-text: #ffffff;
            --input-placeholder: #64748b;
            --dropdown-bg: #1a2332;
            --dropdown-hover: #243044;
            --card-shadow: 0 4px 20px rgba(0,0,0,0.3);
            --gradient-start: #00d4ff;
            --gradient-end: #0099cc;
        }
        
        [data-theme="light"] {
            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --bg-card: #ffffff;
            --bg-card-hover: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --border-color: rgba(0, 0, 0, 0.06);
            --border-hover: rgba(0, 212, 255, 0.4);
            --shadow-color: rgba(0, 0, 0, 0.06);
            --input-bg: rgba(0,0,0,0.02);
            --nav-bg: rgba(255, 255, 255, 0.92);
            --hero-overlay: rgba(255,255,255,0.05);
            --badge-bg: rgba(0,212,255,0.06);
            --section-alt: rgba(0,0,0,0.01);
            --input-border: rgba(0,0,0,0.08);
            --input-text: #0f172a;
            --input-placeholder: #94a3b8;
            --dropdown-bg: #ffffff;
            --dropdown-hover: #f1f5f9;
            --card-shadow: 0 4px 20px rgba(0,0,0,0.06);
            --gradient-start: #0099cc;
            --gradient-end: #0077aa;
        }
        
        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.4s ease, color 0.4s ease;
        }
        
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 8px; }
        
        #loading-screen {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: var(--bg-primary);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        #loading-screen.hidden { opacity: 0; visibility: hidden; }
        
        .loader {
            width: 80px; height: 80px;
            position: relative;
        }
        .loader svg {
            animation: rotate 2s linear infinite;
            transform-origin: center;
        }
        .loader circle {
            fill: none;
            stroke: #2563eb;
            stroke-width: 3;
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: dash 1.5s ease-in-out infinite;
            stroke-linecap: round;
        }
        .loader .circle-bg {
            stroke: rgba(0, 212, 255, 0.1);
            stroke-dasharray: 200;
            stroke-dashoffset: 0;
            animation: none;
        }
        @keyframes rotate { 100% { transform: rotate(360deg); } }
        @keyframes dash {
            0% { stroke-dashoffset: 200; }
            50% { stroke-dashoffset: 50; }
            100% { stroke-dashoffset: 200; }
        }
        
        .loader-text { margin-top: 20px; font-size: 16px; color: var(--text-secondary); letter-spacing: 2px;font-weight: bold; }
        .loader-text span { color: #00d4ff; }
        .loader-dots::after {
            content: '';
            animation: dots 1.5s steps(4, end) infinite;
        }
        @keyframes dots {
            0% { content: ''; }
            25% { content: '.'; }
            50% { content: '..'; }
            75% { content: '...'; }
            100% { content: ''; }
        }
        
        .neon-text {
            color: #00d4ff;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
        }
        [data-theme="light"] .neon-text {
            color: #0099cc;
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
        }
        
        .btn-gaming {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-gaming::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 ease;
        }
        .btn-gaming:hover::before { left: 100%; }
        .btn-gaming:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
        }
        [data-theme="light"] .btn-gaming:hover {
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
        }
        
        .btn-outline-gaming {
            border: 2px solid #00d4ff;
            color: #00d4ff;
            background: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline-gaming:hover {
            background: #00d4ff;
            color: #0a0e17;
            transform: scale(1.05);
        }
        [data-theme="light"] .btn-outline-gaming:hover {
            color: #fff;
        }
        
        .btn-gold-gaming {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #0a0e17;
            transition: all 0.3s ease;
        }
        .btn-gold-gaming:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 210, 0, 0.25);
        }
        
        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        .product-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow-color);
        }
        .product-image {
            position: relative;
            overflow: hidden;
            background: var(--bg-secondary);
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-image svg {
            opacity: 0.3;
            transition: opacity 0.4s ease;
        }
        .product-card:hover .product-image svg {
            opacity: 0.5;
        }
        
        .badge-gaming {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #fff;
            font-size: 9px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .badge-gold {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #0a0e17;
            font-size: 9px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 700;
        }
        .badge-sale {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: #fff;
            font-size: 9px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        .badge-new {
            background: linear-gradient(135deg, #34d399, #059669);
            color: #fff;
            font-size: 9px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        .badge-best {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 9px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        .badge-discount-big {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: #fff;
            font-size: 16px;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 700;
        }
        
        .category-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        .category-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #0099cc);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .category-card:hover::after { transform: scaleX(1); }
        .category-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }
        .category-icon {
            width: 56px; height: 56px;
            background: var(--bg-secondary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        .category-card:hover .category-icon {
            background: rgba(0, 212, 255, 0.08);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.03);
        }
        
        .nav-gaming {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: background 0.4s ease;
        }
        .nav-link-gaming {
            position: relative;
            color:  #2563eb;
            transition: color 0.3s ease;
            font-weight: 500;
            font-size: 14px;
        }
        .nav-link-gaming::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background:  #2563eb;;
            transition: width 0.3s ease;
        }
        .nav-link-gaming:hover::after { width: 100%; }
        .nav-link-gaming:hover { color:  #2563eb; }
        .nav-link-gaming.active { color:  #2563eb; }
        .nav-link-gaming.active::after { width: 100%; }
        
        .search-form {
            display: flex;
            align-items: center;
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 12px;
            padding: 4px 6px 4px 4px;
            transition: all 0.3s ease;
        }
        .search-form:focus-within {
            border-color: #00d4ff;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
        }
        .search-form input {
            background: transparent;
            border: none;
            padding: 6px 10px;
            font-size: 13px;
            color: var(--input-text);
            width: 160px;
            outline: none;
        }
        .search-form input::placeholder {
            color: var(--input-placeholder);
        }
        .search-form button {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border: none;
            border-radius: 10px;
            padding: 6px 12px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }
        
        .user-menu {
            position: relative;
            cursor: pointer;
        }
        .user-menu .avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .user-menu .avatar svg {
            width: 22px;
            height: 22px;
        }
        .user-menu .avatar:hover {
            border-color: #00d4ff;
            transform: scale(1.05);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 110%;
            left: 0px;
            min-width: 220px;
            background: var(--dropdown-bg);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 8px 0;
            box-shadow: 0 15px 40px var(--shadow-color);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        .user-menu:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 18px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--dropdown-hover);
            color: #00d4ff;
        }
        .dropdown-menu a svg {
            width: 18px;
            height: 18px;
            opacity: 0.7;
        }
        .dropdown-menu .divider {
            height: 1px;
            background: var(--border-color);
            margin: 6px 12px;
        }
        .dropdown-menu .user-info {
            padding: 12px 18px 8px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 6px;
        }
        .dropdown-menu .user-info .name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 14px;
        }
        .dropdown-menu .user-info .email {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        
        .product-slider-wrapper {
            position: relative;
            padding: 0 20px;
        }
        .product-slider-wrapper .swiper-button-next,
        .product-slider-wrapper .swiper-button-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            border: 1px solid var(--border-color);
            color: #00d4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        .product-slider-wrapper .swiper-button-next:hover,
        .product-slider-wrapper .swiper-button-prev:hover {
            background: #00d4ff;
            color: #fff;
            border-color: #00d4ff;
        }
        .product-slider-wrapper .swiper-button-next {
            right: -10px;
        }
        .product-slider-wrapper .swiper-button-prev {
            left: -10px;
        }
        .product-slider-wrapper .swiper-button-next::after,
        .product-slider-wrapper .swiper-button-prev::after {
            font-size: 14px;
            font-weight: bold;
        }
        [data-theme="light"] .product-slider-wrapper .swiper-button-next,
        [data-theme="light"] .product-slider-wrapper .swiper-button-prev {
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }
        
        .swiper-slide { border-radius: 20px; overflow: hidden; }
        .swiper-button-next, .swiper-button-prev {
            color: #00d4ff !important;
            background: rgba(0, 0, 0, 0.4) !important;
            width: 44px !important;
            height: 44px !important;
            border-radius: 50% !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.15) !important;
            transition: all 0.3s ease;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: #00d4ff !important;
            color: #0a0e17 !important;
        }
        .swiper-button-next::after, .swiper-button-prev::after {
            font-size: 18px !important;
        }
        .swiper-pagination-bullet {
            background: rgba(255,255,255,0.25) !important;
            width: 10px !important;
            height: 10px !important;
        }
        .swiper-pagination-bullet-active {
            background: #00d4ff !important;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3) !important;
        }
        [data-theme="light"] .swiper-pagination-bullet {
            background: rgba(0,0,0,0.15) !important;
        }
        [data-theme="light"] .swiper-pagination-bullet-active {
            background: #00d4ff !important;
        }
        
        .hero-slide {
            height: 460px;
            position: relative;
            overflow: hidden;
        }
        .hero-slide .bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.4'%3E%3Cpath d='M36 34v2h-2v-2h2zm0-4v2h-2v-2h2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .feature-gaming {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            transition: all 0.4s ease;
            box-shadow: var(--card-shadow);
        }
        .feature-gaming:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }
        .feature-gaming .icon {
            width: 50px; height: 50px;
            background: var(--bg-secondary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        .feature-gaming:hover .icon {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
        }
        .feature-gaming:hover .icon svg { stroke: #fff !important; }
        
        .footer-gaming {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            transition: background 0.4s ease;
        }
        .footer-link {
            color: var(--text-muted);
            transition: color 0.3s ease;
            font-size: 14px;
        }
        .footer-link:hover { color: #00d4ff; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        .float-animation { animation: float 3s ease-in-out infinite; }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in-up { animation: fadeInUp 0.5s ease forwards; }
        
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        }
        
        .price-old {
            color: var(--text-muted);
            text-decoration: line-through;
            font-size: 13px;
        }
        .price-new {
            color: #00d4ff;
            font-size: 20px;
            font-weight: 700;
        }
        [data-theme="light"] .price-new { color: #0099cc; }
        
        .theme-toggle {
            width: 38px; height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .theme-toggle:hover {
            border-color: #2563eb;
            transform: rotate(20deg);
        }
        
        .newsletter-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            box-shadow: var(--card-shadow);
        }
        
        input[type="email"] {
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 12px;
            padding: 14px 20px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        input[type="email"]:focus {
            border-color: #00d4ff;
            outline: none;
        }
        input[type="email"]::placeholder { color: var(--text-muted); }
        
        .section-title-wrap {
            position: relative;
            display: inline-block;
        }
        .section-title-wrap::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #0099cc);
            border-radius: 10px;
        }
        
        .discount-card {
            border-radius: 16px;
            transition: all 0.4s ease;
            box-shadow: var(--card-shadow);
        }
        .discount-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px var(--shadow-color);
        }
        
        .section-alt {
            background: var(--section-alt);
        }
        
        @media (max-width: 768px) {
            .swiper-button-next, .swiper-button-prev { display: none !important; }
            .hero-slide { height: 350px !important; }
            .product-slider-wrapper .swiper-button-next,
            .product-slider-wrapper .swiper-button-prev { display: none !important; }
            .product-slider-wrapper { padding: 0; }
            .search-form input {
                width: 80px;
            }
            .dropdown-menu {
                left: -100px;
                min-width: 200px;
            }
        }


