
@media (min-width: 1200px) {
    .index-container .container {
        max-width: 1280px
    }
}
        .index-container {
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            background-color: #0f0f15;
            color: #e0e0e0;
        }
        
        .index-container .hero-banner {
            background: linear-gradient(135deg, #6e00ff 0%, #ff00a0 100%);
            color: white;
            padding: 150px 0;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        
        .index-container .hero-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            animation: index-container starsAnim 100s linear infinite;
        }
        
        .index-container .hero-content {
            position: relative;
            z-index: 2;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        
        .index-container h1, .index-container h2, .index-container h3, .index-container h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        
        .index-container .featured-heading {
            position: relative;
            display: inline-block;
            margin-bottom: 60px;
            font-size: 2.5rem;
            background: linear-gradient(90deg, #00f2fe, #4facfe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .index-container .featured-heading::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #00f2fe, #4facfe);
            border-radius: 2px;
        }
        
        .index-container .product-card {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(30, 30, 40, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            perspective: 1000px;
            transform-style: preserve-3d;
        }
        
        .index-container .product-card:hover {
            transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 0 20px 50px rgba(110, 0, 255, 0.5);
        }
.index-container .card-body .card-title,.card-text {height: 46px;overflow: hidden;color:#999}
.index-container .card-body .card-title a{color:#e0e0e0}
.index-container .card-body .card-title a:hover{color:#00f2fe}
        
        .index-container .product-img-container {
            position: relative;
            overflow: hidden;
            background: rgba(0,0,0,0.2);
        }
        
        .index-container .product-img {
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
        }
        
        .index-container .product-card:hover .product-img {
            transform: scale(1.1) rotate(2deg);
        }
        
        .index-container .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff00a0, #ff0066);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 0, 160, 0.3);
            z-index: 2;
        }
        
        .index-container .btn-more {
            background: linear-gradient(45deg, #6e00ff, #a100ff);
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(110, 0, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .index-container .btn-more::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: 0.5s;
        }
        
        .index-container .btn-more:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(110, 0, 255, 0.5);
        }
        
        .index-container .btn-more:hover::before {
            left: 100%;
        }
        
        .index-container .blog-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(30, 30, 40, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }
        
        .index-container .blog-card:hover {
            transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
            box-shadow: 0 15px 40px rgba(255, 0, 160, 0.4);
        }
        
        .index-container .blog-img-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .index-container .blog-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .index-container .blog-card:hover .blog-img {
            transform: scale(1.1);
        }
        
        .index-container .blog-date {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .index-container .policy-box {
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(30, 30, 40, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            transform-style: preserve-3d;
        }
        
        .index-container .policy-box:hover {
            transform: translateY(-10px) rotateX(5deg);
            background: linear-gradient(135deg, rgba(110, 0, 255, 0.3), rgba(255, 0, 160, 0.3));
            box-shadow: 0 15px 40px rgba(110, 0, 255, 0.4);
            border-color: rgba(255,255,255,0.3);
        }
        
        .index-container .policy-icon {
            font-size: 50px;
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.5s ease;
            background: linear-gradient(45deg, #00f2fe, #4facfe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .index-container .policy-box:hover .policy-icon {
            transform: scale(1.2) rotateY(180deg);
        }
        
        .index-container .section {
            padding: 80px 0;
        }
        
        .index-container .section:nth-child(even) {
            background: linear-gradient(to bottom, rgba(15,15,21,0.9), rgba(30,30,40,0.9));
        }
        
        .index-container .glitch {
            position: relative;
        }
        
        .index-container .glitch::before, .index-container .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.8;
        }
        
        .index-container .glitch::before {
            color: #0ff;
            z-index: -1;
            animation: index-container glitch-effect 3s infinite;
        }
        
        .index-container .glitch::after {
            color: #f0f;
            z-index: -2;
            animation: index-container glitch-effect 2s infinite reverse;
        }
        
        @keyframes index-container starsAnim {
            from { background-position: 0 0; }
            to { background-position: -1000px 500px; }
        }
        
        @keyframes index-container glitch-effect {
            0% { transform: translate(0); }
            20% { transform: translate(-3px, 3px); }
            40% { transform: translate(-3px, -3px); }
            60% { transform: translate(3px, 3px); }
            80% { transform: translate(3px, -3px); }
            100% { transform: translate(0); }
        }
        
        .index-container .neon-text {
            text-shadow: 0 0 5px #6e00ff, 0 0 10px #6e00ff, 0 0 20px #6e00ff, 0 0 40px #ff00a0;
            animation: index-container neon-flicker 2s infinite alternate;
        }
        
        @keyframes index-container neon-flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                text-shadow: 0 0 5px #6e00ff, 0 0 10px #6e00ff, 0 0 20px #6e00ff, 0 0 40px #ff00a0;
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }
        
        .index-container .floating {
            animation: index-container floating 3s ease-in-out infinite;
        }
        
        @keyframes index-container floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .index-container .pulse {
            animation: index-container pulse 2s infinite;
        }
        
        @keyframes index-container pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(110, 0, 255, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(110, 0, 255, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(110, 0, 255, 0); }
        }
        
        .index-container .btn-primary {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            border: none;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
        }
        
        .index-container .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
        }
        
        .index-container .btn-link {
            color: #00f2fe;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            padding-left: 0;
            transition: all 0.3s ease;
        }
        
        .index-container .btn-link::after {
            content: "→";
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .index-container .btn-link:hover {
            color: #ff00a0;
            padding-left: 5px;
        }
        
        .index-container .btn-link:hover::after {
            margin-left: 10px;
        }
        
        .index-container .price-container {
            margin: 10px 0;
        }
        
        .index-container .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #00f2fe;
        }
        
        .index-container .original-price {

            text-decoration: line-through;
            color: #aaa;
            margin-left: 10px;
            font-size: 0.9rem;
        }
        
        .index-container .rating {
            color: #ffcc00;
            margin-right: 5px;
        }
        
        .index-container .rating-count {
            color: #aaa;
            font-size: 0.8rem;
        }
        
        @media (max-width: 768px) {
            .index-container .hero-banner {
                padding: 100px 0;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            
            .index-container .featured-heading {
                font-size: 2rem;
            }
            
            .index-container .section {
                padding: 50px 0;
            }
        }