:root {
            --primary: #ff6ec7;
            --secondary: #7851ff;
            --accent: #00ffff;
            --light: #f8f0ff;
            --dark: #1a0033;
            --text: #ffffff;
            --gray: #a0a0a0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            color: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 110, 199, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 0, 51, 0.7), rgba(26, 0, 51, 0.9)), url('../img/19.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 110, 199, 0.2) 0%, transparent 50%);
            animation: pulse 8s infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 4px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 10px rgba(255, 110, 199, 0.5); }
            to { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 18px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 110, 199, 0.4);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 110, 199, 0.6);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(120, 81, 255, 0.2));
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--light);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(255, 110, 199, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(120, 81, 255, 0.1), rgba(0, 255, 255, 0.1));
            position: relative;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            background: rgba(26, 0, 51, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 110, 199, 0.3);
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(255, 110, 199, 0.4);
        }
        
        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            margin-bottom: 20px;
            color: var(--light);
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(120, 81, 255, 0.3));
            position: relative;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .price-card {
            background: rgba(26, 0, 51, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 110, 199, 0.2);
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--accent);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
        }
        
        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(255, 110, 199, 0.4);
        }
        
        .price-header {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 25px 20px;
        }
        
        .price-header h3 {
            font-size: 28px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .price {
            font-size: 42px;
            font-weight: bold;
        }
        
        .price-body {
            padding: 40px 20px;
        }
        
        .price-body ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-body li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.7), rgba(0, 255, 255, 0.2));
            position: relative;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            height: 280px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(255, 110, 199, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(120, 81, 255, 0.4));
            position: relative;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .feedback-item {
            display: none;
            text-align: center;
            padding: 30px;
            background: rgba(26, 0, 51, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 110, 199, 0.2);
        }
        
        .feedback-item.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .feedback-text {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 25px;
            color: var(--light);
            line-height: 1.8;
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--accent);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--accent);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.7), rgba(0, 255, 255, 0.3));
            position: relative;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 25px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            background: rgba(26, 0, 51, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 110, 199, 0.2);
        }
        
        .faq-question {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 20px 25px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 28px;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '−';
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: var(--light);
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(120, 81, 255, 0.3));
            position: relative;
        }
        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(26, 0, 51, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 110, 199, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 16px;
            background: rgba(26, 0, 51, 0.5);
            color: var(--text);
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
            border-radius: 15px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(120, 81, 255, 0.5));
            color: white;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 110, 199, 0.3);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-column p {
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(26, 0, 51, 0.7);
            backdrop-filter: blur(10px);
            padding: 25px;
            margin-top: 40px;
            border-radius: 10px;
            font-size: 16px;
            color: var(--gray);
            border: 1px solid rgba(255, 110, 199, 0.2);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 25px;
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 1px solid rgba(255, 110, 199, 0.3);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: var(--light);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
        }
        
        .cookie-accept:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 110, 199, 0.4);
        }
        
        .cookie-decline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1002;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.95), rgba(120, 81, 255, 0.5));
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 1px solid rgba(255, 110, 199, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--accent);
        }
        
        .modal h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .modal p {
            color: var(--light);
            margin-bottom: 25px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: none;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
        }

