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

:root {
  --pink-light: #ffe0ef;
  --pink-mid: #ff85b8;
  --pink-deep: #e8317a;
  --pink-soft: #ffd6e7;
  --white: #ffffff;
  --dark: #2a0a18;
  --gray: #7a5065;
  --card-shadow: 0 12px 48px rgba(232, 49, 122, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff0f6;
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #ff85b8 0%, #e8317a 60%, #c0195c 100%);
  padding: 60px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.avatar-ring {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 32px rgba(0,0,0,0.2);
  display: block;
}

.live-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #e8317a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
}

.hero-name {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  margin-bottom: 6px;
}

.hero-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.25);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* ─── SECTIONS ─── */
.section {
  padding: 56px 24px;
}

.container {
  max-width: 560px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-title.center { text-align: center; }

.section-sub {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 28px;
}

.section-sub.center { text-align: center; }

/* ─── EMAIL SECTION ─── */
.email-section {
  background: #fff0f6;
}

.email-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid #ffe0ef;
  text-align: center;
}

.email-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  font-size: 1rem;
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  padding: 15px 16px 15px 44px;
  border: 2px solid #ffc0d9;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff8fb;
  outline: none;
  transition: border-color 0.2s;
}

.input-wrap input:focus {
  border-color: var(--pink-deep);
}

.input-wrap input::placeholder {
  color: #c490a8;
}

.btn-primary {
  background: linear-gradient(135deg, #ff85b8 0%, #e8317a 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,49,122,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,49,122,0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.privacy-note {
  font-size: 0.78rem;
  color: #c490a8;
}

.success-msg {
  display: none;
  margin-top: 16px;
  background: #fff0f6;
  border: 1.5px solid #ff85b8;
  border-radius: 14px;
  padding: 14px;
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.success-msg.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ─── CHANNELS SECTION ─── */
.channels-section {
  background: linear-gradient(180deg, #fff0f6 0%, #ffe0ef 100%);
}

.channels-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,49,122,0.1);
  border: 1.5px solid #ffe0ef;
  transition: transform 0.15s, box-shadow 0.15s;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,49,122,0.18);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 26px;
  height: 26px;
}

.twitch .channel-icon {
  background: #f0e8ff;
  color: #6441a5;
}

.telegram .channel-icon {
  background: #e8f4ff;
  color: #229ed9;
}

.channel-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.channel-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.channel-handle {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

.channel-arrow {
  font-size: 1.1rem;
  color: var(--pink-mid);
  font-weight: 700;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--pink-deep);
  text-align: center;
  padding: 20px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 420px) {
  .hero-name { font-size: 1.55rem; }
  .email-card { padding: 28px 20px; }
  .hero-stats { padding: 14px 18px; gap: 14px; }
}

/* ─── CHANNEL CARD AS BUTTON ─── */
.channel-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  border: 1.5px solid #ffe0ef;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(232,49,122,0.1);
  transition: transform 0.15s, box-shadow 0.15s;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,49,122,0.18);
}

/* ─── POPUP ─── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(40, 0, 20, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.popup-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(232,49,122,0.25);
  border: 1.5px solid #ffe0ef;
  animation: slideUp 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #fff0f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.popup-close:hover {
  background: #ffd6e7;
}

.popup-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.popup-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.popup-sub {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 22px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── DISCLAIMER ─── */
.disclaimer {
  margin-top: 12px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
