
        :root {
            --primary: #7d12ff;
            --secondary: #00f0ff;
            --accent: #ff2d75;
            --dark: #0a0a1a;
            --light: #e0e0ff;
            --text: #c7c7f3;
            --bg: #12122b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent);
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--secondary);
            transition: all 0.3s;
        }

        .burger.active div:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active div:nth-child(2) {
            opacity: 0;
        }

        .burger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 2rem;
            display: none;
            flex-direction: column;
            gap: 1.5rem;
            border-bottom: 1px solid var(--primary);
            z-index: 999;
        }

        .mobile-nav.active {
            display: flex;
        }

        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            background: linear-gradient(rgba(18, 18, 43, 0.9), rgba(18, 18, 43, 0.9)), 
                        url('https://images.unsplash.com/photo-1548386581-23b700b33be0?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTIwfHx0ZWF8ZW58MHx8MHx8fDA%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
        }

        .policy{
            max-width: 1000px;
            margin: 0px auto;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
            animation: glow 2s infinite alternate;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(125, 18, 255, 0.3);
        }

        .about {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature {
            background-color: rgba(10, 10, 26, 0.7);
            padding: 2rem;
            border-radius: 10px;
            border-left: 3px solid var(--primary);
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .product {
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background-color: rgba(10, 10, 26, 0.7);
            padding: 2rem;
            border-radius: 10px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(125, 18, 255, 0.3);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            margin: 1rem 0;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text);
            opacity: 0.7;
        }

        .sale {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .reviews {
            position: relative;
            overflow: hidden;
        }

        .review-slider {
            display: flex;
            transition: transform 0.5s;
            margin-top: 3rem;
        }

        .review {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            margin-right: 2rem;
        }

        .review-author {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }

        .review-stars {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-btn {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--text);
            border: none;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s;
        }

        .slider-btn.active {
            background-color: var(--secondary);
            opacity: 1;
            transform: scale(1.2);
        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(125, 18, 255, 0.3);
            padding-bottom: 1rem;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            padding: 0.5rem 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .contact-form {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(10, 10, 26, 0.7);
            padding: 2rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(0, 240, 255, 0.1);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            position: relative;
            border: 1px solid var(--secondary);
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
        }

        .cookie-btn {
            margin-left: 1rem;
            padding: 0.5rem 1rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .cookie-btn.secondary {
            background-color: transparent;
            border: 1px solid var(--primary);
        }

        footer {
            background-color: var(--dark);
            padding: 3rem 2rem;
            border-top: 1px solid var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: var(--light);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(125, 18, 255, 0.3);
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 5px var(--secondary);
            }
            to {
                text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--primary);
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }
            
            .burger {
                display: flex;
            }
            
            section {
                padding: 4rem 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner .btns {
                margin-top: 1rem;
            }
        }
