*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f0f12;
  --card: #1a1a22;
  --text: #f5f5f7;
  --text-muted: #a0a0b0;
  --accent: #e84393;
  --accent-hover: #fd79a8;
  --radius: 20px;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(232, 67, 147, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px 16px;
}

.card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.header {
  text-align: center;
}

.name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tagline {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.video-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.profile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 8px;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
}

.btn-telegram:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-telegram:active {
  transform: translateY(0);
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .name {
    font-size: 2.25rem;
  }
}
