
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            height: 100vh;
             padding-bottom: env(safe-area-inset-bottom);
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            background-color: #0f0e17;
        }

        /* Navagation Bar */
        nav {
            position: sticky;
            top: 0;
            background: #0c0c13;
            color: #fff;
            display: flex;
            height: 80px;
            padding-left: 1rem;
            padding-right: 0rem;
            align-items: center;
            z-index: 100;
        }

/* Left */
.nav-left {
    position: relative;
    left: 5%;
    transform: none;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* On smaller screens: move to the left */
@media (max-width: 768px) {
    .nav-left {
        position: relative;
        left: 0;
        transform: none;
        justify-content: flex-start;
    }
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: #603BFF;
}

.nav-left img {
    width: 50px;
    height: 50px;
    margin: 0;
}

/* Center */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-center a {
    color: #c2c2c2;
    margin: 0 1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: #ffffff;
}

.nav-center a:hover::after {
    width: 100%;
}

.gradient-text {
  background: linear-gradient(90deg, #ffd280, #8271ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
}

/* Search Bar Styling */
.nav-buttons {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0.5rem;
  transition: all 0.3s ease;
  height: 50px;
  position: absolute;
  gap: 1rem;
  right: 4rem;
}

.nav-buttons button{
  border: none;
  border-radius: 1000px;
  width: 120px;
  height: 40px;
  transition: transform 0.1s ease-in-out;
  cursor: pointer;
}

.nav-buttons button:hover {
  transform: scale(1.03);
}

.login {
  background-color: white;
  color: #603BFF;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: sans-serif;
  font-style: bold;
}

.signup {
  background-color: #603BFF;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: sans-serif;
  font-style: bold;
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }
}

.nav-icons {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0.5rem;
  height: 40px;
  gap: 1rem;
  position: absolute;
  border-radius: 50px;
  right: 0.5rem;
}

.nav-icons button {
  background: none;          /* dark rounded background */
  color: #fff;               /* icon color */
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding-top: 0.25rem;
  
  width: 40px;               /* make it square */
  height: 40px;
  border-radius: 50%;        /* makes it a circle */
              /* center the icon */
  align-items: center;
  justify-content: center;
}

.nav-icons button:hover {
  color: #0e0e0e;
  background: #fff;
}

@media (min-width: 769px) {
  .not-desktop {
    display: none;
  }
}


        header {
    position: relative;
    min-height: 20vh; /* taller for more scroll space */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    overflow: hidden;
    background: radial-gradient(
        circle at top left,
        rgba(255, 203, 154, 0.8) 0%,
        rgba(255, 66, 246, 0.6) 25%,
        rgba(162, 0, 255, 0.9) 65%,
        rgba(2, 0, 36, 1) 100%
    );
}

.landing {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  font-family: "Inter", sans-serif;
  padding: 0 5%;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
}

.landing-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
}

.landing-text h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #603BFF; /* purple accent */
  margin-top: -1rem;
}

.landing-text p {
  color: #a7a9be;
  margin-top: 15px;
  font-size: 1rem;
}

.cta-btn {
  background-color: #603BFF;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 48px;
  font-size: 1rem;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.03);
}

/* Image */
.landing-image img {
  margin-top: 30px;
  width: 100%;
  margin-left: 50px;
  max-width: 450px;
}

/* RESPONSIVE (mobile layout) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .landing-text h1 {
    font-size: 2rem;
  }

  .landing-text h2 {
    font-size: 2rem;
  }

  .landing-image img {
    margin-top: 30px;
    max-width: 300px;
  }
}


        footer {
          display: none;
            background: rgb(24, 22, 29);
            color: #fff;
            text-align: center;
            padding: 1rem 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
