/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #121212;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navigation */
  .navbar {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    
  }
  
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fe2c55;

  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #25f4ee;
  }

  /* Responsive nav */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
  
  #menu-toggle {
    display: none;
  }
  
  @media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 1rem 1rem;
      }
    
      .logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
    
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
        display: none;
      }
    
      #menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
      }
    
      .hamburger {
        display: block;
      }
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(to right, #fe2c55, #25f4ee);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    background: #fff;
    color: #fe2c55;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #f9d1db;
  }
  
  /* Sections */
  .section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
    transition: all 0.6s ease;
  }
  
  .section h2 {
    margin-bottom: 1.5rem;
    color: #25f4ee;
    text-align: center;
    font-size: 2rem;
  }
  
  .section ul,
  .section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section ul li,
  .section ol li {
    margin-bottom: 0.75rem;
  }
  
  /* Modern cards */
  .testimonial {
    background: #1e1e1e;
    border: 1px solid #25f4ee;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.3);
    transition: transform 0.3s ease;
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
  }
  
  .testimonial h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #fe2c55;
  }
  
  .testimonial span {
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
    color: #aaa;
  }
  
  /* Buy Section */
  .buy-section {
    background: #000;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 0 0 12px 12px;
    border-top: 3px solid #fe2c55;
  }
  
  .buy-button {
    background: linear-gradient(to right, #fe2c55, #25f4ee);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 30px;
    margin: 0.5rem;
    display: inline-block;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.4);
  }
  
  .price {
    font-weight: bold;
    color: #fe2c55;
    font-size: 1.4rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    color: #999;
    font-size: 0.9rem;
  }
  
  /* Reveal Animations */
  .hidden {
    opacity: 0;
    transform: translateY(40px);
  }
  
  .visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .cta-button,
    .buy-button {
      font-size: 1rem;
      padding: 0.75rem 1.25rem;
    }
  }
    @media (max-width: 480px) {
        .navbar {
        flex-direction: column;
        align-items: flex-start;
        }
    
        .nav-links {
        width: 100%;
        padding-left: 1rem;
        }
    
        .hero h1 {
        font-size: 1.8rem;
        }
    
        .testimonial h3 {
        font-size: 1.2rem;
        }
    
        .buy-button {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        }
    }