/* === BASE === */
:root {
  --bg: #06020f;
  --accent: #ff4e88;
  --accent-2: #6f79ff;
  --text: #f3f3ff;
  --muted: #a7a8c8;
  --panel: rgba(255, 255, 255, 0.05);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 4px;
}

/* === WRAPPER === */
.index-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  min-height: calc(100vh - 8px);
  border-radius: 8px;
}

/* === HEADER === */
.index-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.header-emojis {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 4rem;
}

.brand-name {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3e3e, #ff4e88);
  /* Reddi-ish brand color */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.tag-pill {
  background: #ffb8d0;
  color: #590024;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255, 78, 136, 0.4);
}

.hero-text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  gap: 12px;
  margin-top: 8px;
}

.hero-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  text-align: center;
}

/* === ANIMATIONS === */
.fast-pulse {
  animation: pulse 0.5s ease-in-out infinite alternate;
}

.slow-pulse {
  animation: pulse 1s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* === PRIVACY SECTION === */
.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  /* Gold lock */
  font-size: 1rem;
  font-weight: 700;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.privacy-card {
  background: rgba(30, 30, 45, 0.6);
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.privacy-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.privacy-card p {
  font-size: 0.65rem;
  color: var(--text);
  line-height: 1.3;
}

/* === ACCOUNT / MOEDA SECTION === */
.account-section {
  padding: 20px;
  text-align: center;
}

.account-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
}

.account-section p {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.how-it-works h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  text-align: left;
}

.step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
}

.step-num {
  background: var(--accent-2);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.step-item p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #e0e0ff;
}

/* === CTA BOX === */
.cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 20px;
}

.cta-btn {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, #055bbd, #e91e63);
  /* Blue to Pink gradient */
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
  text-transform: uppercase;
  line-height: 1.4;
}

/* Botão secundário para instalar PWA */
.cta-btn-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--accent);
  background: rgba(255, 78, 136, 0.1);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 78, 136, 0.4);
  transform: translateY(-2px);
}

.cta-btn-secondary img {
  border-radius: 6px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}