/* Reset & basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: #ff4081;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #e91e63;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-weight: bold;
    color: #ff4081;
    font-size: 1.5rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  
  .nav-links li a.active,
  .nav-links li a:hover {
    background: #ff4081;
    color: white;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem 4rem;
    animation: fadeIn 1.5s ease forwards;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideDown 1s ease forwards;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background: white;
    color: #e91e63;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.3);
    user-select: none;
  }
  
  .btn:hover {
    background: #f8bbd0;
  }
  
  /* Intro Section */
  .intro {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    padding: 0 1rem;
  }
  
  .intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e91e63;
  }
  
  .intro p {
    font-size: 1.1rem;
    color: #555;
  }
  
  /* Features Section */
  .features {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
  }
  
  .features h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e91e63;
  }
  
  .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1.5rem;
  }
  
  .feature-card {
    background: #fff0f6;
    border: 2px solid #ff80ab;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.1);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
  }
  
  .feature-card h2 {
    color: #d81b60;
    margin-bottom: 0.75rem;
  }
  
  /* Community Section */
  .community {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
  }
  
  .community h1 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .community p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .community-benefits {
    list-style: inside disc;
    color: #d81b60;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  /* Download Section */
  .download {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    padding: 0 1rem;
  }
  
  .download h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e91e63;
  }
  
  .download p {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
  }
  
  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .store-btn {
    background: #222;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
  }
  
  .store-btn:hover {
    background: #e91e63;
  }
  
  /* Contact Section */
  .contact {
    max-width: 600px;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  
  .contact h1 {
    text-align: center;
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  label {
    font-weight: 600;
    color: #555;
  }
  
  input, textarea {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input:focus, textarea:focus {
    border-color: #e91e63;
    outline: none;
  }
  
  button.btn {
    background: #e91e63;
    color: white;
    font-weight: 700;
    padding: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  button.btn:hover {
    background: #d81b60;
  }
  
  #formResponse {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    color: #e91e63;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #222;
    color: #eee;
    margin-top: 4rem;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
    .feature-list {
      grid-template-columns: 1fr;
    }
    .download-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    .btn {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }
    .store-btn{
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }
  }
  


   /* Screenshot Section */
   .screenshots {
    padding: 3rem 2rem;
    text-align: center;

  }
  
  .screenshots h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #bf360c;
  }
  
  .screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .screenshot-gallery img {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .screenshot-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Info */
  .contact-info {

    padding: 3rem 2rem;
    text-align: center;
  }
  
  .contact-info h3 {
    font-size: 2rem;
    color: #d84315;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  