@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  :root {
    --primary-color: #6C63FF;
    --secondary-color: #efefef;
    --background-color: #1A1A2E;
    --text-color: #ffffff;
    --accent-color: #FF6B6B;
  }
  
  * {/*
    margin: 0;
    padding: 0;*/
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(91, 37, 216, 0.1) 0%, rgba(91, 37, 216, 0) 40%),
      radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0) 40%);
    background-attachment: fixed;
  }
  
  header {
    /*background: linear-gradient(to right, #2C3E50, #4CA1AF);*/
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,255,255, 0.1);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  nav a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
  }
  
  nav img {
    height: 40px;
    transition: all 0.3s ease;
  }
  
  nav img:hover {
    transform: scale(1.1);
  }
  
  .button_link {
    /*background-color: var(--primary-color);*/
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .button_link:hover {
    /*background-color: var(--accent-color);
    color: var(--text-color);*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  main {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
  }
  
  .header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInFromLeft 1s ease-out;
  }
  
  .logospinner {
    margin-top: 2rem;
  }
  
  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .features {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .featuregrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .waitlist {
    background: linear-gradient(45deg, #2C3E50, #4CA1AF);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
  
  label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
  }
  
  input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
  }
  
  button[type="submit"] {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  button[type="submit"]:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .install {
    text-align: center;
    margin-bottom: 4rem;
  }
  /*
  footer {
    background: linear-gradient(to right, #2C3E50, #4CA1AF);
    text-align: center;
    padding: 2rem;
  }*/
  
  footer img {
    height: 40px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  footer img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      gap: 1rem;
    }
  
    h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  }



  .features {
    text-align: center;
    margin-bottom: 0rem;
    padding: 2rem 0;
  }
  
  .featuregrid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  
  .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature:hover::before {
    transform: scaleX(1);
  }
  
  .feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .feature p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
  }
  
  /* Broad style for first 4 features */
  .feature:nth-child(-n+4) {
    grid-column: span 2;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 3rem;
  }
  
  .feature:nth-child(-n+4) .feature-icon {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  
  .feature:nth-child(-n+4) .feature-content {
    flex: 1;
  }
  
  /* Single row for last 4 features */
  .feature:nth-child(n+5) {
    grid-column: span 1;
  }
  
  /* Staggered animation for features */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .feature:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s forwards; }
  .feature:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
  .feature:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }
  .feature:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
  .feature:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
  .feature:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }
  .feature:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.7s forwards; }
  .feature:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.8s forwards; }
  
  /* Responsive design */
  @media (min-width: 768px) {
    .featuregrid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .featuregrid {
      grid-template-columns: 1fr;
    }
    
    .feature:nth-child(-n+4) {
      grid-column: span 1;
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .feature:nth-child(-n+4) .feature-icon {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  }



  #particle-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

  #particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}