:root {
      --primary: #6a00ff;
      --secondary: #00ff88;
      --dark: #0a0a0a;
      --light: #f0f0f0;
      --accent: #ff00aa;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(10, 10, 10, 0.9);
      padding: 1rem;
      z-index: 1000;
      border-bottom: 1px solid var(--primary);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      color: var(--secondary);
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    main {
      margin-top: 80px;
    }
    section {
      padding: 4rem 2rem;
      min-height: 100vh;
    }
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1533777324565-a040eb52facd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--secondary);
      text-shadow: 0 0 10px var(--primary);
      animation: fadeIn 2s ease-in-out;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin-bottom: 2rem;
      animation: fadeIn 2s ease-in-out 0.5s forwards;
      opacity: 0;
    }
    .btn {
      padding: 0.8rem 2rem;
      background-color: var(--primary);
      color: var(--light);
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      animation: fadeIn 2s ease-in-out 1s forwards;
      opacity: 0;
    }
    .btn:hover {
      background-color: var(--secondary);
      color: var(--dark);
      transform: scale(1.05);
    }
    .about, .products, .prices, .gallery, .feedback, .faq {
      background-color: var(--dark);
      border-bottom: 1px solid var(--primary);
    }
    h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--secondary);
      text-align: center;
    }
    h3 {
      font-size: 1.8rem;
      margin: 1.5rem 0;
      color: var(--primary);
    }
    p {
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .product-card {
      background-color: rgba(20, 20, 20, 0.8);
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid var(--primary);
      transition: transform 0.3s;
    }
    .product-card:hover {
      transform: translateY(-10px);
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 1rem;
    }
    .price-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    .price-item {
      background-color: rgba(20, 20, 20, 0.8);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--primary);
      width: 300px;
      text-align: center;
    }
    .price-item h3 {
      color: var(--secondary);
    }
    .price {
      font-size: 2rem;
      color: var(--accent);
      margin: 1rem 0;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
    }
    .gallery-item {
      height: 250px;
      overflow: hidden;
      border-radius: 5px;
      position: relative;
    }
    .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: 800px;
      margin: 0 auto;
      overflow: hidden;
    }
    .feedback-slide {
      background-color: rgba(20, 20, 20, 0.8);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--primary);
      margin: 0 1rem;
      text-align: center;
      display: none;
    }
    .feedback-slide.active {
      display: block;
      animation: fadeIn 1s ease-in-out;
    }
    .feedback-author {
      font-weight: bold;
      color: var(--secondary);
      margin-top: 1rem;
    }
    .slider-nav {
      text-align: center;
      margin-top: 1rem;
    }
    .slider-dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      background-color: var(--light);
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.3s;
    }
    .slider-dot.active {
      opacity: 1;
      background-color: var(--primary);
    }
    .faq-item {
      margin-bottom: 1rem;
      border-bottom: 1px solid var(--primary);
      padding-bottom: 1rem;
    }
    .faq-question {
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    .faq-answer.open {
      max-height: 500px;
    }
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: rgba(20, 20, 20, 0.8);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--primary);
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--secondary);
    }
    input, textarea {
      width: 100%;
      padding: 0.8rem;
      background-color: rgba(30, 30, 30, 0.8);
      border: 1px solid var(--primary);
      border-radius: 5px;
      color: var(--light);
    }
    textarea {
      min-height: 150px;
    }
    footer {
      background-color: rgba(10, 10, 10, 0.9);
      padding: 2rem;
      text-align: center;
      border-top: 1px solid var(--primary);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--secondary);
    }
    .footer-contact {
      margin-bottom: 2rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      opacity: 0.7;
      margin-top: 2rem;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(10, 10, 10, 0.9);
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--primary);
      z-index: 1000;
    }
    .cookie-banner p {
      margin-right: 1rem;
    }
    .cookie-btn {
      padding: 0.5rem 1rem;
      background-color: var(--primary);
      color: var(--light);
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .cookie-btn:hover {
      background-color: var(--secondary);
      color: var(--dark);
    }
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background-color: var(--dark);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--primary);
      max-width: 500px;
      text-align: center;
    }
    .close-modal {
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: var(--primary);
      color: var(--light);
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .close-modal:hover {
      background-color: var(--secondary);
      color: var(--dark);
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: rgba(10, 10, 10, 0.9);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
      }
      .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
      }
      .burger {
        display: block;
      }
      .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .burger.active div:nth-child(2) {
        opacity: 0;
      }
      .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      section {
        padding: 2rem 1rem;
      }
      h2 {
        font-size: 2rem;
      }
    }

