:root {
            --primary: #FF00FF;
            --secondary: #00FFFF;
            --accent: #FF77A3;
            --dark: #0D0221;
            --light: #FFE4F1;
            --text: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            text-shadow: 0 0 15px var(--secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .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(--secondary));
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .burger.active .line2 {
            opacity: 0;
        }
        
        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.95);
            padding: 20px;
            border-bottom: 2px solid var(--primary);
        }
        
        .nav-menu.active li {
            margin: 10px 0;
        }
        
        main {
            margin-top: 80px;
        }
        
        .hero {
            padding: 150px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(255, 0, 255, 0.4)), url('../img/08.webp');
            background-size: cover;
            background-position: center;
            color: var(--text);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 255, 255, 0.2) 0%, rgba(255, 119, 163, 0.1) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            color: var(--secondary);
            text-shadow: 0 0 20px var(--secondary);
            font-family: 'Courier New', monospace;
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
            }
            to {
                text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary), 0 0 40px var(--primary);
            }
        }
        
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .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, 0, 255, 0.7);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
            border: 5px solid var(--secondary);
            transform: rotate(3deg);
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: rotate(0);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(255, 0, 255, 0.2));
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
            border: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 119, 163, 0.2));
            border-radius: 0 0 0 100px;
            z-index: 0;
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
        }
        
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 25px;
            border: 3px solid var(--secondary);
        }
        
        .product-card h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.6rem;
            position: relative;
            z-index: 1;
        }
        
        .prices-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .price-card {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.9), rgba(255, 119, 163, 0.3));
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
            border: 2px solid var(--secondary);
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .price-card h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.7rem;
        }
        
        .price {
            font-size: 2.8rem;
            color: var(--primary);
            margin: 25px 0;
            font-weight: bold;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 280px;
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
            transform: rotate(0);
            transition: transform 0.5s;
            border: 3px solid var(--primary);
        }
        
        .gallery-item:nth-child(even) {
            transform: rotate(2deg);
        }
        
        .gallery-item:nth-child(3n) {
            transform: rotate(-1deg);
        }
        
        .gallery-item:hover {
            transform: rotate(0);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-item {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(0, 255, 255, 0.2));
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
            border-left: 6px solid var(--secondary);
        }
        
        .feedback-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 4px solid var(--primary);
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        .feedback-item h4 {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 20px;
        }
        
        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
        }
        
        .slider-btn:hover {
            transform: scale(1.1);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(255, 0, 255, 0.2));
            border-radius: 15px;
            margin-bottom: 25px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
        }
        
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
        }
        
        .faq-question h3 {
            font-size: 1.3rem;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 25px;
        }
        
        .faq-icon {
            transition: transform 0.3s;
            font-size: 1.5rem;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .disclaimer {
            background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 119, 163, 0.1));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            margin: 60px 0;
            text-align: center;
        }
        
        .disclaimer p {
            color: var(--accent);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        footer {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.9), rgba(255, 0, 255, 0.3));
            color: var(--text);
            padding: 60px 0 40px;
            border-top: 2px solid var(--primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(255, 0, 255, 0.4));
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            transform: translateY(150%);
            transition: transform 0.5s;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 25px;
            color: var(--text);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
        }
        
        .cookie-reject {
            background-color: transparent;
            border: 2px solid var(--text);
            color: var(--text);
        }
        
        .contact-form {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(0, 255, 255, 0.2));
            border-radius: 15px;
            padding: 40px;
            max-width: 650px;
            margin: 0 auto;
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
            border: 2px solid var(--secondary);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            background-color: rgba(0, 255, 255, 0.1);
            border: 2px solid var(--secondary);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        
        .modal {
            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: 3000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(255, 0, 255, 0.4));
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            max-width: 550px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s;
            border-top: 6px solid var(--primary);
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--secondary);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

