/* Basic Reset */
body,
h1,
h2,
h3,
p,
ul,
li,
a,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  font-family: Poppins, sans-serif;
  background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726);
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
}
.btn {
  width: 100%;
  padding: 1rem 4rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff4081, #ff6b35);
  color: white;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.18);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
  /* --- Navigation --- */
  nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      gap: 2rem;
    }
  }
  .logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
  }
  .nav-links a:hover {
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }

  /* --- Hero Section --- */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 2rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .hero-icon {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background: #fff3e0;
  }
  .hero-icon img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: white;
    animation: bounce 2s ease infinite;
  }
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  .hero h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    text-align: left;
  }
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  .hero ul {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    text-align: left;
  }
  .hero.privacy section{
    margin-bottom: 3rem;
  }
  .hero.privacy h1 {
    margin-bottom: 3rem;
  }
  .hero.privacy p {
    text-align: left;
    margin-bottom: 1rem;
  }
  .hero.privacy ul {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  /* --- Features Section --- */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
  }

  /* --- Butt Counter Demo --- */
  .butt-counter {
    background: linear-gradient(135deg, #ff6b35, #ff4081);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .butt-counter h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
}

/* --- Support Section --- */
.support {
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin: 2rem;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.support h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  color: white;
  animation: bounce 2s ease infinite;
  text-align: center;
}
.support h2 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}
.support p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}
.support ul {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
}
.support form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.support label {
  font-weight: bold;
  color: white;
}
.support input,
.support textarea,
.support select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
.support select, .support input::placeholder, .support textarea::placeholder {
  color: darkgray;
}
.support select {
  height: 36px;
  border: none;
  border-radius: 4px;
}
.support button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff4081, #ff6b35);
  color: white;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.support button:hover {
  background: linear-gradient(45deg, #ff6b35, #ff4081);
}
.support input[type='checkbox'] {
  margin-right: 0.5rem;
  width: auto;
}
.support label[for='consent'] {
  font-size: 0.95rem;
}

/* --- Footer --- */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin-bottom: 1rem;
}
.footer-container a {
  color: white;
  text-decoration: underline;
}
.footer-container a:hover {
  color: #ff9800;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1,
  .support h1 {
    font-size: 2.5rem;
  }
  .hero p,
  .support p {
    font-size: 1.2rem;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

/* --- Utility Classes for Inline Styles --- */
.img-logo {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.img-demo {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
}
