:root {
            --bg-color: #0d0a1b;
            --primary-color: #fff;
            --accent-pink: #ff1493;
            --accent-purple: #8a2be2;
            --accent-cyan: #00ffff;
            --font-family: 'Courier New', Courier, monospace;
            --header-height: 70px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            text-align: center;
            text-transform: uppercase;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 0 0 15px var(--accent-pink), 0 0 30px var(--accent-purple);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-cyan);
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 15px;
            color: var(--accent-purple);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(13, 10, 27, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            border-bottom: 2px solid var(--accent-purple);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-pink);
            text-decoration: none;
            text-shadow: 0 0 5px var(--accent-pink);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent-pink);
        }
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        main {
            padding-top: var(--header-height);
        }
        section {
            padding: 80px 0;
            position: relative;
        }
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: url('../img/01.webp') no-repeat center center/cover;
            position: relative;
            animation: fadeIn 2s ease-in-out;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: slideInUp 1s ease-out;
        }
        .hero h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            text-shadow: none;
            margin-bottom: 40px;
            animation: slideInUp 1.2s ease-out;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--accent-pink);
            color: var(--bg-color);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px var(--accent-pink);
        }
        .btn:hover {
            background: var(--accent-purple);
            box-shadow: 0 0 20px var(--accent-purple);
            transform: scale(1.05);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: #1a1529;
            text-align: center;
        }
        .about-content, .products-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 50px;
        }
        .about-content > div, .products-content > div {
            flex: 1;
            text-align: left;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .about-content img, .products-content img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 15px var(--accent-purple);
        }
        .prices-grid {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            justify-content: center;
        }
        .price-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--accent-purple);
            transition: transform 0.3s ease, border-color 0.3s ease;
            max-width: 300px;
            opacity: 0;
            transform: translateY(20px);
        }
        .price-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-pink);
        }
        .price-card h3 {
            margin-bottom: 20px;
            color: var(--accent-pink);
        }
        .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-cyan);
            margin-bottom: 20px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto;
            overflow: hidden;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .feedback-card {
            flex: 0 0 100%;
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 0 15px;
            border: 2px solid var(--accent-purple);
        }
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        .feedback-card span {
            font-weight: bold;
            color: var(--accent-cyan);
        }
        .slider-nav {
            margin-top: 20px;
            text-align: center;
        }
        .slider-dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .slider-dot.active {
            background-color: var(--accent-pink);
        }
        .faq-item {
            background-color: rgba(255, 255, 255, 0.05);
            margin: 20px auto;
            max-width: 800px;
            border-radius: 10px;
            border: 2px solid var(--accent-purple);
            overflow: hidden;
        }
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--accent-cyan);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        .faq-answer p {
            padding-bottom: 20px;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            content: '-';
        }
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            text-align: left;
        }
        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .contact-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--accent-purple);
            color: var(--primary-color);
            border-radius: 5px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .contact-form input:focus {
            border-color: var(--accent-pink);
        }
        footer {
            background-color: #0d0a1b;
            color: var(--primary-color);
            text-align: center;
            padding: 40px 20px;
            border-top: 2px solid var(--accent-pink);
            font-size: 0.9rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px 0;
        }
        .footer-section h4 {
            color: var(--accent-cyan);
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: var(--primary-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--accent-purple);
        }
        .disclaimer {
            background-color: #1a1529;
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
            border-top: 1px solid var(--accent-purple);
        }
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #1a1529;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid var(--accent-pink);
            text-align: center;
            max-width: 400px;
            z-index: 2000;
            display: none;
        }
        .cookie-banner p {
            margin-bottom: 15px;
        }
        .cookie-banner .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #1a1529;
            padding: 40px;
            border-radius: 10px;
            border: 2px solid var(--accent-pink);
            text-align: center;
            z-index: 3000;
            display: none;
            box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
            max-width: 90%;
        }
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--accent-cyan);
        }
        .popup h3 {
            margin-bottom: 10px;
        }
        .popup p {
            margin-top: 20px;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                background: rgba(13, 10, 27, 0.95);
                backdrop-filter: blur(5px);
                width: 100%;
                height: 100vh;
                flex-direction: column;
                justify-content: center;
                gap: 40px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links a {
                font-size: 1.5rem;
            }
            .burger-menu { display: flex; }
            .about-content, .products-content {
                flex-direction: column;
                text-align: center;
            }
            .about-content > div, .products-content > div {
                text-align: center;
            }
            .prices-grid { flex-direction: column; align-items: center; }
            .feedback-card { padding: 20px; }
            .footer-content { flex-direction: column; }
        }

