body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #f5fbfa;
    color: #111;
    text-align: center;
  }
  
  /* Main Logo */
  .main-logo {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }
  
  /* Hero & Waitlist Section */
  .hero-waitlist-section {
    padding: 1.5rem 0 1rem;
    background: linear-gradient(135deg, #f8fdfc 0%, #f0faf8 100%);
    margin-bottom: 0.5rem;
  }
  
  .container {
    max-width: 500px;
    margin: auto;
    padding: 1rem;
  }
  
  /* Product Showcase */
  .product-showcase {
    padding: 1rem 0;
    background: linear-gradient(135deg, #fafdfc 0%, #f5fbfa 100%);
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  .scrolling-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .scrolling-content {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 20s linear infinite;
    padding: 0 1rem;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .product-card {
    min-width: 250px;
    background: linear-gradient(135deg, #f0ffff 0%, #e0ffff 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
  }
  
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    color: #1976d2;
    font-weight: 600;
  }
  
  .product-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    margin: 0;
  }
  
  .logo {
    width: 160px;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  
  p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .highlight {
    font-weight: 600;
    margin: 0.8rem 0;
    font-size: 1rem;
    color: #1976d2;
  }
  
  form {
    margin: 1rem 0;
  }
  
  input[type="email"] {
    padding: 0.7rem;
    width: 80%;
    max-width: 320px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  input[type="email"]:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  }
  
  button {
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-weight: 600;
  }
  
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  }
  
  .success {
    font-weight: bold;
    color: #2e7d32;
    font-size: 1.2rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #4caf50;
  }
  
  .hidden {
    display: none;
  }
  
  .socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .socials img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
  }
  
  .socials img:hover {
    transform: scale(1.1);
  }
  
  /* Survey Section */
  .survey-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f9f6 0%, #e0f2f1 100%);
    margin-bottom: 1rem;
  }
  
  .survey-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1976d2;
    font-weight: 600;
  }
  
  .survey-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .survey-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
  }
  
  .survey-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  }
  
  .made-by {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
  }
  
  .made-by a {
    text-decoration: none;
    color: #2196f3;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .taskbar-content {
      padding: 0 1rem;
    }
    
    .taskbar-title {
      font-size: 1.2rem;
    }
    
    .product-card {
      min-width: 240px;
      padding: 1.5rem 1rem;
    }
    
    .card-icon {
      font-size: 2.5rem;
    }
    
    .product-card h3 {
      font-size: 1.1rem;
    }
    
    .product-card p {
      font-size: 0.9rem;
    }
    
    .scrolling-content {
      gap: 1.5rem;
    }
  }
  