 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
 body {
  height: 100vh;
  background: 
   linear-gradient(180deg, #ffffff, #f6f6f6) !important;
    overflow-x: hidden;
}

/* Top bar */
.top-bar {
  background: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

/* Header */
.header {
  background: white;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
#name-logo{
  position: absolute;
  top: 40px;
  left: 470px;
}

.logo {
  font-size: 36px;
  letter-spacing: 8px;
  margin-bottom: 15px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  letter-spacing: 1px;
}
nav h4{
   letter-spacing: 3px;
}

.card-box{
  height: 100vh;
  display: flex;
  justify-content: space-between;
  background-image: url(./assets/bg.png);
  background-size: cover;
  
}
 /* Card Wrapper  */
.preorder-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* Card */
.preorder-card {
  background: #011C39;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
  color: #FEFEFE;
}

/* Text */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background-color: #012449;
  color: white;
}

input:focus,
textarea:focus {
  border-color: #e6e6e6;  
  color: white;
}

/* Button */
button {
  margin-top: 10px;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* Note */
.note {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}



.side img{
  margin-top: 200px;
  height: 400px;
  width: 400px;
  filter: blur(10px);
}



.center{
  color: white;
  align-self: center;
}
.center #launch{
  font-size: 60px;
  letter-spacing: 10px;

}
.center #soon{
  font-size: 40px;
  letter-spacing: 30px;
 margin-left: 95px;
}

footer{
  width: 100vw;
  background-color: #FEFEFE;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  letter-spacing: 4px;
}

footer p{
  letter-spacing: normal;
  margin-top: 20px;
}

/* ========================= */
/* Tablet (max-width: 1024px) */
/* ========================= */
@media (max-width: 1024px) {

  #name-logo{
  position: absolute;
  top: 40px;
  left: 350px;
}
  .card-box {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 20px;
    gap: 40px;
  }

  .preorder-wrapper {
    max-width: 100%;
  }

  .center #launch {
    font-size: 48px;
    letter-spacing: 6px;
    text-align: center;
  }

  .center #soon {
    font-size: 32px;
    letter-spacing: 15px;
    margin-left: 0;
    text-align: center;
  }

  .side img {
    margin-top: 0;
    height: 300px;
    width: 300px;
    filter: blur(6px);
  }
}


/* ========================= */
/* Mobile (max-width: 768px) */
/* ========================= */
@media (max-width: 768px) {

   #name-logo{
  position: absolute;
  top: 40px;
  left: 250px;
  height: 50px;
  width: 50px;
}

  body {
    overflow-x: hidden;
  }

  .logo {
    font-size: 28px;
    letter-spacing: 5px;
  }

  nav h4 {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0 10px;
    text-align: center;
  }

  .card-box {
    flex-direction: column;
    justify-content: center;
    padding: 30px 15px;
    background-position: center;
  }

  .preorder-card {
    padding: 25px 20px;
  }

  h1 {
    font-size: 22px;
  }

  .desc {
    font-size: 13px;
  }

  input,
  textarea {
    font-size: 13px;
    padding: 12px;
  }

  button {
    padding: 12px;
    font-size: 13px;
  }

  .center #launch {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .center #soon {
    font-size: 26px;
    letter-spacing: 8px;
    margin-left: 0;
  }

  .side img {
    height: 220px;
    width: 220px;
    filter: blur(5px);
  }

  footer {
    text-align: center;
    padding: 20px 10px;
  }

  footer h4 {
    font-size: 14px;
    letter-spacing: 3px;
  }

  footer p {
    font-size: 12px;
  }
}

@media (max-width:460px) {
  
    #name-logo{
  position: absolute;
  top: 45px;
  left: 100px;
  height: 50px;
  width: 50px;
}
}