:root {
            --color-primary: #121021;
            --color-secondary: #00E5FF;
            --color-accent: #FF5A90;
            --color-text: #E5E5E5;
            --font-family-header: 'Cyberway Riders', sans-serif;
            --font-family-body: 'Roboto Mono', monospace;
        }

        @font-face {
            font-family: 'Cyberway Riders';
            src: url('https://fonts.cdnfonts.com/s/45413/CyberwayRiders.woff') format('woff');
        }

        @font-face {
            font-family: 'Roboto Mono';
            src: url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--color-primary);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-accent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 16, 33, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--color-secondary);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-header);
            font-size: 2rem;
            color: var(--color-secondary);
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            font-family: var(--font-family-header);
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 25px;
            width: 30px;
        }

        .burger-bar {
            width: 100%;
            height: 3px;
            background-color: var(--color-secondary);
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            transform: translateX(0);
        }

        /* Hero */
        .hero {
            padding: 150px 0;
            text-align: center;
            background: url('../img/07.webp') no-repeat center center/cover;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 16, 33, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-family: var(--font-family-header);
            font-size: clamp(2rem, 8vw, 4rem);
            color: var(--color-secondary);
            text-shadow: 0 0 10px var(--color-accent);
        }

        .hero p {
            font-size: clamp(1rem, 4vw, 1.5rem);
            max-width: 700px;
            margin: 20px auto;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-family-header);
            font-size: 1.2rem;
            border-radius: 5px;
            text-transform: uppercase;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #FF85A8;
            transform: scale(1.05);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        h2 {
            font-family: var(--font-family-header);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--color-accent);
            text-shadow: 0 0 5px rgba(255, 90, 144, 0.5);
        }

        .about-content, .products-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .section-image {
            width: 100%;
            height: auto;
            border: 3px solid var(--color-secondary);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
            transition: transform 0.5s ease;
        }

        .section-image:hover {
            transform: scale(1.02) rotate(1deg);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background: rgba(0, 229, 255, 0.1);
            border: 2px solid var(--color-secondary);
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
        }

        .price-card.featured {
            background: var(--color-secondary);
            color: var(--color-primary);
            border-color: var(--color-accent);
        }

        .price-card h3 {
            font-family: var(--font-family-header);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .price-card .price {
            font-family: var(--font-family-header);
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 20px;
        }

        .price-card.featured .price {
            color: var(--color-primary);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-accent);
        }

        .price-card.featured li::before {
            color: var(--color-primary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 2px solid var(--color-secondary);
            transition: transform 0.5s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .feedback-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .feedback-slide.active {
            display: flex;
            opacity: 1;
        }

        .feedback-slide p {
            max-width: 800px;
            font-style: italic;
            text-align: center;
            margin-bottom: 10px;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--color-secondary);
            padding-bottom: 10px;
        }

        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            font-family: var(--font-family-header);
            font-size: 1.2rem;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-answer p {
            padding-top: 10px;
        }
        
        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-form label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .contact-form input {
            padding: 10px;
            margin-bottom: 20px;
            border: 2px solid var(--color-secondary);
            background-color: transparent;
            color: var(--color-text);
            border-radius: 5px;
        }
        
        .contact-form button {
            padding: 15px;
            background-color: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-family-header);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #FF85A8;
        }
        
        /* Modal Popup */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background-color: var(--color-primary);
            padding: 40px;
            border: 2px solid var(--color-accent);
            border-radius: 10px;
            text-align: center;
            position: relative;
        }
        
        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-secondary);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 40px 0;
            font-size: 0.9rem;
            color: #ccc;
            text-align: center;
            border-top: 1px solid var(--color-text);
            margin-top: 50px;
        }
        
        /* Footer */
        .footer {
            background-color: #0c0a1a;
            padding: 40px 0;
            border-top: 2px solid var(--color-secondary);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-info {
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 16, 33, 0.95);
            border-top: 2px solid var(--color-accent);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1002;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner a {
            color: var(--color-accent);
        }
        
        .cookie-banner-text {
            flex-grow: 1;
            margin-right: 20px;
        }
        
        .cookie-accept-button {
            padding: 10px 20px;
            background-color: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-family-body);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        /* Animations and Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: 0;
                background: rgba(18, 16, 33, 0.95);
                width: 100%;
                height: calc(100vh - 70px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease;
            }

            .nav-item {
                margin: 2rem 0;
            }

            .burger-menu {
                display: flex;
            }

            .about-content, .products-content {
                grid-template-columns: 1fr;
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

