@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=Roboto:wght@400;700&display=swap');
body {
  background: linear-gradient(135deg, #18181b 0%, #23272e 100%);
  color: #f3f3f3;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
.container {
  max-width: 520px;
  margin: 60px auto;
  background: rgba(30, 30, 34, 0.97);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  border: 2.5px solid #7c3aed;
  position: relative;
  overflow: hidden;
}
.container::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px; right: -30px; bottom: -30px;
  border: 4px dashed #e11d48;
  border-radius: 22px;
  pointer-events: none;
  opacity: 0.13;
}
h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2.7rem;
  color: #e11d48;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px #000, 0 0 2px #e11d48;
}
h2 {
  font-size: 1.2rem;
  color: #a3a3a3;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.features {
  text-align: left;
  margin: 2rem 0 1.5rem 0;
}
.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
}
.icon {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 0.7em;
  vertical-align: middle;
}
.cta {
  margin-top: 2.2rem;
}
.cta button {
  background: linear-gradient(90deg, #e11d48 0%, #7c3aed 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 8px #0006;
  transition: background 0.2s, transform 0.1s;
  text-shadow: 0 1px 4px #000a;
}
.cta button:hover {
  background: linear-gradient(90deg, #7c3aed 0%, #e11d48 100%);
  transform: scale(1.04);
}
.rings {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
.ring {
  width: 32px;
  height: 32px;
  border: 3px solid #a3a3a3;
  border-radius: 50%;
  box-shadow: 0 0 8px #e11d48, 0 0 2px #fff;
  background: #23272e;
  position: relative;
}
.spike {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 16px solid #e11d48;
  top: -14px;
  left: 7px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 2px 2px #0008);
}
@media (max-width: 600px) {
  .container {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  h1 {
    font-size: 2rem;
  }
}
