@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none; /* 🚫 запрет выделения текста */
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 30% 20%, #0b0b16, #030308 80%);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  cursor: crosshair;
}

/* 🌠 Фон — вот сюда вставляешь свой файл */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://i.pinimg.com/1200x/7d/13/68/7d1368f79fb813970b994e89a8890c31.jpg') center/cover no-repeat; /* <== замени на свой путь */
  opacity: 0.25;
  z-index: -2;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  position: relative;
}

header h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  font-weight: 600;
  background: linear-gradient(90deg, #d6b7ff, #86c7ff, #b3ffef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: all 0.3s ease;
}

header h1:hover {
  filter: drop-shadow(0 0 25px #b78aff);
}

.dust {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fff, transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: dust 1.2s linear forwards;
  opacity: 0.8;
  z-index: 10;
}

@keyframes dust {
  0% { transform: scale(1) translate(0, 0); opacity: 1; }
  100% { transform: scale(0.1) translate(100px, -80px); opacity: 0; }
}

header p {
  margin-top: 0.5rem;
  color: #aaa;
  font-weight: 300;
  font-size: 1rem;
}

.content {
  text-align: center;
  padding: 3rem 1rem;
}

.content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.content p {
  color: #cfcfcf;
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

.buy-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #a66cff, #6c63ff);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(166, 108, 255, 0.4);
}

.buy-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(166, 108, 255, 0.7);
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* 🌟 Звёзды при кликах */
.star {
  position: fixed;
  pointer-events: none;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fff, transparent);
  border-radius: 50%;
  animation: starFly 1.2s ease-out forwards;
  z-index: 999;
}

@keyframes starFly {
  from { opacity: 1; transform: scale(1) translate(0, 0); }
  to { opacity: 0; transform: scale(0.1) translate(var(--x), var(--y)); }
}
