* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #080019, #1a0032);
    color: white;
    min-height: 100vh;
    padding: 20px;
  }
  .glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  
  .circle {
    position: absolute;
    animation-name: identifier;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction:reverse;
    height: 60%;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
  }
  @keyframes identifier {
    0%{
        width: 60% ;
    }
    50%{
      width: 30% ;
    }
    100%{
        width: 60% ;
    }
  }
  .circle.purple {
    background: #a259ff;
    top: 10%;
    left: 20%;
  }
  
  .circle.blue {
    background: #377dff;
    bottom: 10%;
    right: 15%;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  /* .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
  } */
  
  .signup-btn {
    background: linear-gradient(90deg, #a259ff, #377dff);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  .signup-btn:hover{
    background: #3c9ffc;
  }
  
  .hero {
    text-align: center;
    margin-top: 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  .hero h1 span {
    color: #a259ff;
  }
  
  .search-bar {
    margin-top: 50px;
    display: inline-flex;
    border: 2px solid #333;
    border-radius: 50px;
    overflow: hidden;
    background: #111;
  }
  
  .search-bar input {
    padding: 15px 20px;
    border: none;
    width: 300px;
    background: transparent;
    color:#aaa;;
    outline: none;
    }

.search-bar button {
    background: linear-gradient(90deg, #a259ff, #377dff);
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #3c9ffc;
}

.announcement {
    margin-top: 50px;
    color: #aaa;
    font-size: 1.3rem;
}
