
/* Star Purchase Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Stars animation in background */
body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    radial-gradient(3px 3px at 120px 10px, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 140px 200px, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 200px 250px, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 250px 60px, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    radial-gradient(3px 3px at 300px 170px, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: starTwinkle 8s linear infinite;
  z-index: 0;
}

@keyframes starTwinkle {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 400px 400px;
  }
}

.container {
  background: rgba(31, 38, 62, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

h1 {
  color: #ffce54;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(255, 206, 84, 0.5);
}

p {
  text-align: center;
  margin-bottom: 30px;
  color: #e6e6e6;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 8px;
  color: #bdc3c7;
  font-size: 0.95rem;
}

input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  margin-bottom: 24px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #ffce54;
  box-shadow: 0 0 8px rgba(255, 206, 84, 0.5);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

button {
  background: linear-gradient(45deg, #ffce54, #ff9f43);
  border: none;
  border-radius: 8px;
  color: #1a1a2e;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 206, 84, 0.4);
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 206, 84, 0.5);
  background: linear-gradient(45deg, #ff9f43, #ffce54);
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 206, 84, 0.3);
}

/* Telegram Button Styles */
.telegram-button {
  display: block;
  text-align: center;
  background: linear-gradient(45deg, #ffce54, #ff9f43);
  border: none;
  border-radius: 8px;
  color: #1a1a2e;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 206, 84, 0.4);
}

.telegram-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 206, 84, 0.5);
  background: linear-gradient(45deg, #ff9f43, #ffce54);
}

.telegram-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 206, 84, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
    width: 95%;
  }

  h1 {
    font-size: 2rem;
  }

  button {
    padding: 12px;
  }
}
