:root {
  --bg: #0b0710;
  --bg-alt: #14101c;
  --pink: #ff2d95;
  --pink-soft: #ff6ec7;
  --purple: #7b2ff7;
  --text: #f5f0f8;
  --text-dim: #b8aec4;
  --card: #1c1424;
  --border: rgba(255, 45, 149, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Ambient glow background */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.glow-1 {
  width: 380px; height: 380px;
  background: var(--pink);
  top: -120px; left: -100px;
}
.glow-2 {
  width: 340px; height: 340px;
  background: var(--purple);
  bottom: -100px; right: -100px;
}

/* Hero */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.avatar-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.45);
  margin-bottom: 8px;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink-soft);
  font-size: 18px;
}

.avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.name .dot { color: var(--pink); }

.tagline {
  color: var(--text-dim);
  font-size: 0.98rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 15px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 45, 149, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 45, 149, 0.5);
}
.cta-btn.secondary {
  margin-top: 24px;
  padding: 13px 34px;
  font-size: 0.98rem;
}

.microcopy {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 4px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.social-row.hidden { display: none; }

.social-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
}
.social-btn:hover { color: var(--pink-soft); border-color: var(--pink); }

/* Teaser */
.teaser {
  text-align: center;
}
.teaser h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.teaser-grid {
  display: grid;
  gap: 14px;
}

.teaser-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.teaser-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.teaser-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.teaser-card p {
  font-size: 0.92rem;
  color: var(--text);
}

[dir="rtl"] .teaser-card {
  text-align: right;
}

/* Footer */
.footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.72rem;
  line-height: 1.6;
  opacity: 0.8;
}
.copyright { margin-top: 6px; }
