:root {
            --bg-color: #121212;
            --text-color: #f0f0f0;
            --accent-blue: #00FFFF;
            --accent-magenta: #FF00FF;
            --border-color: #333;
            --font-family: 'Courier New', Courier, monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        .container {
            max-width: t1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-magenta);
            text-decoration: none;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-blue);
        }
        
        .burger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-color);
            z-index: 1001;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--bg-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                border-left: 1px solid var(--border-color);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
                padding: 1.5rem;
                display: block;
            }

            .burger {
                display: block;
            }
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 4rem 0;
            position: relative;
        }
        
        h1, h2, h3 {
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
            color: var(--accent-blue);
        }

        h2 {
            font-size: 2.5rem;
            color: var(--accent-magenta);
        }

        h3 {
            font-size: 1.8rem;
            color: var(--text-color);
        }
        
        .btn {
            background-color: var(--accent-magenta);
            color: var(--bg-color);
            padding: 0.75rem 2rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn:hover {
            background-color: var(--accent-blue);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('../img/07.webp') center/cover no-repeat fixed;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* About & Products */
        .about, .products {
            background-color: var(--bg-color);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-item {
            border: 1px solid var(--border-color);
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-10px);
        }

        .product-item img {
            max-width: 100%;
            height: auto;
            margin-bottom: 1rem;
        }
        
        /* Prices */
        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .price-card {
            background: #202020;
            border: 1px solid var(--accent-blue);
            padding: 2rem;
            text-align: center;
            width: 300px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            border-color: var(--accent-magenta);
        }

        .price-card h3 {
            color: var(--accent-magenta);
        }
        
        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--accent-blue);
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .price-card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        /* Feedback */
        .feedback-slider-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
        }

        .feedback-card {
            min-width: 100%;
            text-align: center;
            padding: 2rem;
            background: #202020;
            border: 1px solid var(--border-color);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #555;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.6s ease;
        }
        
        .dot.active {
            background-color: var(--accent-blue);
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
        }

        .faq-question h3 {
            margin: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
            padding: 0 1rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding-top: 1rem;
        }

        /* Disclaimer */
        .disclaimer {
            padding: 2rem 0;
            font-size: 0.8rem;
            text-align: center;
            color: #777;
            border-top: 1px solid var(--border-color);
        }
        
        /* Footer */
        footer {
            background-color: #0d0d0d;
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: var(--accent-blue);
        }

        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--accent-magenta);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
            color: #777;
        }
        
        /* Modals & Popups */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
            animation: fadeInModal 0.5s;
        }

        @keyframes fadeInModal {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: var(--bg-color);
            padding: 2rem;
            border: 1px solid var(--accent-blue);
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: scale(0.9);
            animation: popIn 0.3s forwards;
        }

        @keyframes popIn {
            to { transform: scale(1); }
        }

        .close-button {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-button:hover, .close-button:focus {
            color: var(--accent-magenta);
            text-decoration: none;
        }

        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.75rem;
            background-color: #202020;
            border: 1px solid var(--border-color);
            color: var(--text-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(32, 32, 32, 0.95);
            backdrop-filter: blur(5px);
            padding: 1rem;
            z-index: 3000;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            border-top: 1px solid var(--accent-blue);
        }
        
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .cookie-banner .btn {
            background-color: var(--accent-blue);
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--accent-magenta);
        }
        
        /* Animations for scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

