:root {
  --bg-deep: #0d0505;
  --bg-mid: #1a0a0c;
  --bg-card: rgba(28, 12, 14, 0.75);
  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --gold-bright: #f5e6a8;
  --gold-dim: rgba(212, 175, 55, 0.35);
  --text: #f5f0e8;
  --text-muted: #c8b8a0;
  --danger: #e74c3c;
  --success: #2ecc71;
  --radius: 999px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 22px 36px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 40, 40, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 110%, rgba(120, 20, 20, 0.25), transparent 50%),
    linear-gradient(180deg, #1c0a0c 0%, #0f0607 45%, #140808 100%);
}

.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.glow-top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.55), transparent 70%);
}

.glow-bottom {
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 120px;
  background: radial-gradient(circle, rgba(180, 40, 40, 0.35), transparent 70%);
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(245, 230, 168, 0.55), transparent),
    radial-gradient(1px 1px at 78% 22%, rgba(212, 175, 55, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 28% 62%, rgba(245, 230, 168, 0.4), transparent),
    radial-gradient(1px 1px at 88% 48%, rgba(212, 175, 55, 0.35), transparent),
    radial-gradient(1px 1px at 55% 78%, rgba(245, 230, 168, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 18% 88%, rgba(212, 175, 55, 0.35), transparent);
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  width: min(300px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35)); }
  50% { filter: drop-shadow(0 0 26px rgba(245, 230, 168, 0.65)); }
}

.section-title,
.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text);
}

.section-title .line,
.tagline .line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prompt {
  margin: 12px 0 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.reps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rep-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.12) 45%, rgba(245, 230, 168, 0.22) 50%, rgba(212, 175, 55, 0.12) 55%, transparent 100%),
    linear-gradient(180deg, rgba(40, 16, 18, 0.9), rgba(18, 8, 10, 0.95));
  box-shadow:
    0 0 16px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(245, 230, 168, 0.15);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rep-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.rep-btn:hover,
.rep-btn:focus-visible {
  transform: translateY(-1px) scale(1.01);
  border-color: var(--gold-bright);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.35);
  outline: none;
}

.rep-btn:hover::before,
.rep-btn:focus-visible::before {
  transform: translateX(120%);
}

.rep-btn:active {
  transform: scale(0.985);
}

.rep-wa {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.rep-name {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.rep-arrow {
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  opacity: 0.9;
}

.empty-state {
  text-align: center;
  padding: 28px 16px;
  color: var(--text-muted);
  border: 1px dashed var(--gold-dim);
  border-radius: 16px;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.trust-item svg {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
}

.tagline {
  margin-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
}

@media (min-width: 480px) {
  .page {
    border-left: 1px solid rgba(212, 175, 55, 0.08);
    border-right: 1px solid rgba(212, 175, 55, 0.08);
  }
}
