/* ===== AUTH AREA ===== */
.user-info-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f4ff;
  border: 1px solid #d0d8f0;
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 13px;
}
.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.premium-badge {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #5a3a00;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}
.btn-link {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  font-family: "Poppins";
  padding: 0;
}

/* ===== PREMIUM BUTTON ===== */
.premium-button {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #5a3a00;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(247, 151, 30, 0.4);
}
.premium-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(247, 151, 30, 0.5);
}

/* ===== PREMIUM MODAL ===== */
.premium-modal {
  z-index: 1100;
}
.premium-modal-content {
  border-radius: 20px;
  max-width: 480px;
  width: 90%;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}
.premium-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  z-index: 10;
}
.premium-step {
  padding: 36px 32px 32px;
}

/* Header */
.premium-header {
  text-align: center;
  margin-bottom: 24px;
}
.premium-crown {
  font-size: 42px;
  display: block;
  margin-bottom: 8px;
}
.premium-header h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
}
.premium-header p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Features list */
.premium-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-item {
  background: #f8f9ff;
  border: 1px solid #e8eaf6;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
}
.feature-item i {
  color: #3884d6;
  width: 18px;
  text-align: center;
}

/* Google login btn */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: "Poppins";
  width: 100%;
  box-sizing: border-box;
}
.google-btn:hover {
  border-color: #4285f4;
  box-shadow: 0 2px 12px rgba(66,133,244,0.2);
}
.google-btn i {
  color: #4285f4;
  font-size: 18px;
}

/* Gender selection */
.gender-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.gender-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: #f8f9ff;
  border: 2px solid #e8eaf6;
  border-radius: 16px;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: all 0.2s;
}
.gender-btn i {
  font-size: 24px;
  color: #3884d6;
}
.gender-btn:hover, .gender-btn.selected {
  border-color: #3884d6;
  background: #eef2ff;
  color: #3884d6;
}

/* Plans container */
.plans-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-card {
  border: 2px solid #e8eaf6;
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  background: white;
}
.plan-card:hover {
  border-color: #3884d6;
  background: #f5f8ff;
}
.plan-card.popular {
  border-color: #f7971e;
  background: #fffbf0;
}
.plan-info {
  display: flex;
  flex-direction: column;
}
.plan-name {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a2e;
}
.plan-desc {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.plan-price {
  font-size: 18px;
  font-weight: 700;
  color: #3884d6;
}
.plan-price.free {
  color: #27ae60;
}
.popular-tag {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #5a3a00;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}
.plan-gender-note {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.plan-gender-note.female {
  background: #fff0f6;
  color: #c2185b;
}
.plan-gender-note.male {
  background: #e8f4fd;
  color: #1565c0;
}
.plan-gender-note.other {
  background: #f0f4e8;
  color: #2e7d32;
}

/* Success */
.success-header .premium-crown {
  font-size: 56px;
}
.premium-cta {
  width: 100%;
  background: linear-gradient(135deg, #3884d6, #5b9de6);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins";
  margin-top: 20px;
  transition: transform 0.15s;
}
.premium-cta:hover {
  transform: translateY(-1px);
}

/* Login btn in top bar */
.login-btn {
  background: white;
  color: #3884d6;
  border: 2px solid #3884d6;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-btn:hover {
  background: #3884d6;
  color: white;
}

/* ===== PREMIUM CTA BANNER (replaces intro text) ===== */
.premium-cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%) !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}

.premium-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.premium-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-crown {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 210, 0, 0.6));
  animation: crownPulse 2.5s ease-in-out infinite;
}

@keyframes crownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.cta-text h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text p {
  margin: 0;
  font-size: 13px;
  color: #a0aec0;
  font-weight: 400;
}

.cta-buy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #3a2000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(247, 151, 30, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

.cta-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 151, 30, 0.6);
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.cta-buy-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* Feature chips */
.cta-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e0;
}

.cta-chip i {
  color: #ffd200;
  font-size: 11px;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 500px) {
  .premium-cta-banner {
    padding: 20px 16px !important;
    gap: 14px;
  }

  .premium-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cta-crown { font-size: 34px; }

  .cta-text h2 { font-size: 1.15rem; }
  .cta-text p { font-size: 12px; }

  .cta-buy-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  .cta-features { gap: 8px; }
  .cta-chip { font-size: 11px; padding: 5px 10px; }
}
