* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b1a;
  color: #eee;
  overflow: hidden;
}
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 48px 32px;
  text-align: center;
  background: rgba(20, 20, 40, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 80px rgba(255, 100, 150, 0.08);
}
h1 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #e94560, #ff6b8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.subtitle {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 32px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 20px;
  flex: 1 1 160px;
  text-align: center;
}
.feature span:first-child {
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}
.feature span:last-child {
  font-weight: 600;
  font-size: 15px;
  display: block;
  color: #eee;
}
.feature small {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 4px;
}
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}
.btn.primary {
  background: #e94560;
  color: #fff;
}
.btn.primary:hover {
  background: #ff6b8a;
  transform: scale(1.03);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.disclaimer-link {
  display: inline-block;
  margin-top: 24px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}
.disclaimer-link:hover {
  color: #aaa;
}
