:root {
      --neon-pink: #ff2a6d;
      --cyber-teal: #05d9e8;
      --dark-purple: #1a1a2e;
      --matrix-green: #0f0;
      --electric-blue: #4dccff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark-purple);
      color: white;
      overflow-x: hidden;
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(26, 26, 46, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 2rem;
      border-bottom: 1px solid var(--neon-pink);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      color: var(--neon-pink);
      font-size: 1.8rem;
      font-weight: bold;
      text-decoration: none;
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--electric-blue);
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      position: relative;
    }
    .nav-links a:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--neon-pink);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after {
      width: 100%;
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--electric-blue);
      margin: 5px;
      transition: all 0.3s ease;
    }
    main {
      margin-top: 80px;
    }
    section {
      padding: 4rem 2rem;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero {
      background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), 
                  url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      text-align: center;
      position: relative;
    }
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: var(--neon-pink);
      text-shadow: 0 0 10px var(--neon-pink);
      animation: glow 2s infinite alternate;
    }
    .hero p {
      font-size: 1.5rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      color: var(--cyber-teal);
    }
    .btn {
      display: inline-block;
      background-color: var(--neon-pink);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 0 15px var(--neon-pink);
    }
    .btn:hover {
      background-color: var(--electric-blue);
      box-shadow: 0 0 20px var(--electric-blue);
      transform: translateY(-3px);
    }
    .about {
      background-color: rgba(5, 217, 232, 0.1);
      border-top: 1px solid var(--cyber-teal);
      border-bottom: 1px solid var(--cyber-teal);
    }
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--cyber-teal);
      text-align: center;
      text-shadow: 0 0 5px var(--cyber-teal);
    }
    .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 1;
      min-width: 300px;
    }
    .about-img {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px var(--electric-blue);
    }
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .about-img:hover img {
      transform: scale(1.05);
    }
    .products {
      background-color: rgba(255, 42, 109, 0.1);
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .product-card {
      background-color: rgba(26, 26, 46, 0.7);
      border: 1px solid var(--neon-pink);
      border-radius: 10px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(255, 42, 109, 0.3);
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px var(--neon-pink);
    }
    .product-card h3 {
      color: var(--neon-pink);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
    .prices {
      background-color: rgba(77, 204, 255, 0.1);
      border-top: 1px solid var(--electric-blue);
      border-bottom: 1px solid var(--electric-blue);
    }
    .price-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    .price-card {
      background-color: rgba(26, 26, 46, 0.8);
      border: 1px solid var(--cyber-teal);
      border-radius: 10px;
      padding: 2rem;
      width: 300px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .price-card.popular {
      border-color: var(--neon-pink);
      transform: scale(1.05);
      box-shadow: 0 0 20px var(--neon-pink);
    }
    .price-card h3 {
      color: var(--cyber-teal);
      margin-bottom: 1rem;
    }
    .price {
      font-size: 2.5rem;
      color: var(--neon-pink);
      margin: 1rem 0;
    }
    .price span {
      font-size: 1rem;
      color: var(--electric-blue);
    }
    .gallery {
      background-color: rgba(0, 255, 0, 0.05);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
      transition: all 0.3s ease;
      height: 250px;
    }
    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px var(--cyber-teal);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    .feedback {
      background-color: rgba(255, 42, 109, 0.1);
    }
    .feedback-slider {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }
    .feedback-slides {
      display: flex;
      transition: transform 0.5s ease;
    }
    .feedback-slide {
      min-width: 100%;
      padding: 2rem;
      background-color: rgba(26, 26, 46, 0.8);
      border: 1px solid var(--electric-blue);
      border-radius: 10px;
    }
    .feedback-slide h3 {
      color: var(--neon-pink);
      margin-bottom: 1rem;
    }
    .feedback-rating {
      color: var(--cyber-teal);
      margin-bottom: 1rem;
    }
    .slider-nav {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      gap: 1rem;
    }
    .slider-dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: var(--electric-blue);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .slider-dot.active {
      background-color: var(--neon-pink);
      transform: scale(1.2);
    }
    .faq {
      background-color: rgba(5, 217, 232, 0.1);
    }
    .faq-item {
      margin-bottom: 1rem;
      border: 1px solid var(--cyber-teal);
      border-radius: 5px;
      overflow: hidden;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-question {
      background-color: rgba(26, 26, 46, 0.8);
      padding: 1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--electric-blue);
      font-weight: bold;
    }
    .faq-question:hover {
      background-color: rgba(26, 26, 46, 0.9);
    }
    .faq-answer {
      background-color: rgba(26, 26, 46, 0.6);
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.active .faq-answer {
      padding: 1rem;
      max-height: 500px;
    }
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: rgba(26, 26, 46, 0.8);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--neon-pink);
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--electric-blue);
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      background-color: rgba(5, 217, 232, 0.1);
      border: 1px solid var(--cyber-teal);
      border-radius: 5px;
      color: white;
    }
    .form-group textarea {
      min-height: 150px;
    }
    .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-purple);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid var(--neon-pink);
      text-align: center;
      max-width: 500px;
      width: 90%;
    }
    .modal-content h2 {
      color: var(--neon-pink);
      margin-bottom: 1rem;
    }
    .close-modal {
      margin-top: 1rem;
      background-color: var(--electric-blue);
    }
    .disclaimer {
      background-color: rgba(0, 0, 0, 0.7);
      padding: 1rem;
      text-align: center;
      font-size: 0.8rem;
      color: var(--electric-blue);
      border-top: 1px solid var(--neon-pink);
    }
    footer {
      background-color: rgba(26, 26, 46, 0.9);
      padding: 3rem 2rem;
      border-top: 1px solid var(--cyber-teal);
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-section {
      flex: 1;
      min-width: 250px;
    }
    .footer-section h3 {
      color: var(--neon-pink);
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    .footer-links a {
      color: var(--electric-blue);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-links a:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .contact-info {
      list-style: none;
    }
    .contact-info li {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyber-teal);
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 46, 0.9);
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      z-index: 1000;
      border-top: 1px solid var(--neon-pink);
    }
    .cookie-banner p {
      flex: 1;
      min-width: 250px;
    }
    .cookie-banner button {
      background-color: var(--neon-pink);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .cookie-banner button:hover {
      background-color: var(--electric-blue);
    }
    @keyframes glow {
      from {
        text-shadow: 0 0 5px var(--neon-pink);
      }
      to {
        text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
        pointer-events: none;
      }
      .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
      }
      .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: 2.5rem;
      }
      .hero p {
        font-size: 1.2rem;
      }
    }

