body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Satoshi", sans-serif;
  color: #ffffff;
}

.starry-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    ellipse at top,
    #080e21 0%,
    #1b2735 95%
  );
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: transparent;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  font-size: 4rem;
  margin-bottom: -5rem;
  z-index: 2;
  background-color: hsl(221.74deg 23.23% 19.41%);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo > img {
  width: 75%;
}

.container {
  background-color: hsl(221.74deg 23.23% 19.41%);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem 2rem;
  max-width: 550px;
  width: 100%;
  text-align: center;
}

h1 {
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

button {
  background-color: #4a4af4;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  font-family: "Satoshi", sans-serif;
}

button:hover {
  background-color: #3a3ad4;
}

button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .logo {
    width: 60px;
    height: 60px;
    margin-bottom: -2rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
    max-width: 250px;
  }

  h1 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.8rem;
  }
}

.meteor {
  position: absolute;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(
    to right,
    #fff,
    rgba(255, 255, 255, 0)
  );
  opacity: 1;
  pointer-events: none;
}

.meteor::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

@keyframes meteor {
  0% {
    opacity: 1;
    margin-top: -300px;
    margin-right: -300px;
  }
  12% {
    opacity: 0;
  }
  15% {
    margin-top: 300px;
    margin-left: -600px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.no-js-alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  text-align: center;
  border: 1px solid #f5c6cb;
  margin: 20px;
  border-radius: 5px;
  font-family: "Satoshi", sans-serif;
}

.gif-container {
  position: absolute;
  width: 350px; 
  height: 200px;
  overflow: hidden;
}

.transparent-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

#capture {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Styles for phones in landscape orientation */
@media (orientation: landscape) and (max-height: 450px) {
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .logo {
    width: 60px;
    height: 60px;
    margin-bottom: -30px;
    z-index: 3;
  }

  .logo > img {
    width: 70%;
  }

  .container {
    max-width: 80%;
    padding: 1rem;
    margin-left: 20px;
    max-width: 300px;
  }

  h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Additional adjustments for very small heights */
@media (orientation: landscape) and (max-height: 350px) {
  

  .container {
    padding: 0.8rem;
    max-width: 300px;
   
  }

  h1 {
    font-size: 1rem;
  }

  p {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  button {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
}


