*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0a0a14; color: #e0e0e0; min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* ─── Dark theme base ─── */
::selection { background: rgba(59,130,246,0.3); }

/* ─── Background design ─── */
.bg-design {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
}
.bg-design::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-design .glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
}
.bg-design .glow:nth-child(1) {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: #3b82f6; animation: glowMove 20s ease-in-out infinite;
}
.bg-design .glow:nth-child(2) {
  width: 400px; height: 400px; bottom: -80px; right: -80px;
  background: #8b5cf6; animation: glowMove 25s ease-in-out infinite reverse;
}
.bg-design .glow:nth-child(3) {
  width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #06b6d4; animation: glowMove 18s ease-in-out infinite 5s;
}
.bg-design .glow:nth-child(4) {
  width: 250px; height: 250px; top: 20%; left: 70%;
  background: #ec4899; opacity: 0.08; animation: glowMove 22s ease-in-out infinite 3s;
}
.bg-design .glow:nth-child(5) {
  width: 350px; height: 350px; bottom: 20%; left: 10%;
  background: #f59e0b; opacity: 0.06; animation: glowMove 28s ease-in-out infinite 7s;
}
.bg-design .glow:nth-child(6) {
  width: 200px; height: 200px; top: 60%; left: 80%;
  background: #22d3ee; opacity: 0.07; animation: glowMove 16s ease-in-out infinite 11s;
}

@keyframes glowMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.9); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* Navbar */
.navbar {
  background: rgba(10,10,20,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100; animation: fadeSlideDown 0.5s ease-out;
}
.navbar .logo { font-size: 22px; font-weight: 700; background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar .nav-links { display: flex; gap: 12px; align-items: center; }
.navbar .nav-links a { padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: 0.2s; }
.btn-primary { background: #3b82f6; color: #fff !important; border: none; padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.2s; }
.btn-primary:hover { background: #2563eb !important; box-shadow: 0 4px 20px rgba(59,130,246,0.3); }
.btn-outline { border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #bbb !important; background: transparent; padding: 8px 18px; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.2s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); color: #fff !important; background: rgba(255,255,255,0.03); }
.btn-danger { background: #ef4444; color: #fff !important; border: none; padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; transition: 0.2s; }
.btn-danger:hover { background: #dc2626; box-shadow: 0 4px 20px rgba(239,68,68,0.3); }
.btn-sm { padding: 4px 12px; font-size: 12px; border-radius: 6px; }

/* Container */
.container { max-width: 640px; margin: 0 auto; padding: 40px 20px; }

/* Auth pages */
.auth-form { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.06); padding: 36px; border-radius: 16px; max-width: 420px; margin: 60px auto; }
.auth-form h2 { margin-bottom: 24px; font-size: 24px; color: #f0f0f0; }
.auth-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #aaa; }
.auth-form input {
  width: 100%; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  font-size: 15px; margin-bottom: 18px; transition: 0.2s;
  background: rgba(0,0,0,0.3); color: #e0e0e0;
}
.auth-form input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.auth-form button { width: 100%; padding: 11px; background: #3b82f6; color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.auth-form button:hover { background: #2563eb; box-shadow: 0 4px 20px rgba(59,130,246,0.3); }
.auth-form .switch { text-align: center; margin-top: 16px; font-size: 14px; color: #888; }
.auth-form .switch a { color: #3b82f6; font-weight: 500; }
.error-msg { color: #ef4444; font-size: 14px; margin-bottom: 12px; display: none; }

/* Keyframes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(59,130,246,0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-20px) scale(1.05); }
  66% { transform: translateY(10px) scale(0.95); }
}

/* Landing page hero */
.hero { padding: 80px 20px 60px; position: relative; overflow: hidden; }
.hero-inner { display: flex; align-items: center; justify-content: center; gap: 60px; max-width: 1100px; margin: 0 auto; }
.hero-text { flex: 1; min-width: 0; max-width: 520px; }
.hero-mockup { flex-shrink: 0; animation: float 6s ease-in-out infinite; }

.hero h1 { font-size: 52px; margin-bottom: 14px; line-height: 1.15; letter-spacing: -0.5px; }
.hero h1 span { background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6); background-size: 300% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s ease-in-out infinite; }
.hero p { font-size: 18px; color: #888; line-height: 1.6; margin: 0 0 28px; }
.hero .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .cta-btns a { padding: 14px 34px; border-radius: 10px; font-size: 16px; font-weight: 600; }
.hero .cta-btns a.btn-primary { animation: pulse 2.5s ease-in-out 1s; }
.hero .hero-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: #3b82f6;
  margin-bottom: 20px; width: fit-content;
}

/* Phone mockup */
.phone-frame {
  width: 280px; height: 540px; background: #0f0f1a;
  border: 3px solid rgba(255,255,255,0.08); border-radius: 32px;
  padding: 14px 10px; position: relative; box-shadow: 0 30px 80px rgba(59,130,246,0.12), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone-notch { width: 100px; height: 22px; background: #0f0f1a; border-radius: 0 0 14px 14px; margin: -14px auto 8px; }
.phone-screen { width: 100%; height: calc(100% - 40px); border-radius: 18px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.phone-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }
.phone-name { font-size: 18px; font-weight: 700; color: #f0f0f0; }
.phone-bio { font-size: 12px; color: #666; margin-bottom: 4px; }
.phone-link { width: 100%; padding: 11px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 13px; color: #ccc; transition: 0.2s; }
.phone-link:hover { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.15); }
.phone-link i { margin-right: 8px; width: 16px; text-align: center; }

/* Floating decorations */
.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.floating-shape {
  position: absolute; border-radius: 50%; opacity: 0.08;
  animation: orbFloat 12s ease-in-out infinite;
}
.floating-shape:nth-child(1) { width: 300px; height: 300px; background: #3b82f6; top: -60px; left: -80px; animation-delay: 0s; }
.floating-shape:nth-child(2) { width: 200px; height: 200px; background: #8b5cf6; bottom: 10%; right: -40px; animation-delay: -4s; }
.floating-shape:nth-child(3) { width: 150px; height: 150px; background: #06b6d4; top: 40%; left: 60%; animation-delay: -8s; }

/* Particle field */
.particle-field { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(59,130,246,0.25); animation: particleFloat 20s linear infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: -3s; animation-duration: 22s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 40%; top: 10%; animation-delay: -7s; animation-duration: 16s; }
.particle:nth-child(4) { left: 55%; top: 70%; animation-delay: -2s; animation-duration: 24s; width: 2px; height: 2px; background: rgba(139,92,246,0.2); }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: -10s; animation-duration: 20s; }
.particle:nth-child(6) { left: 85%; top: 50%; animation-delay: -5s; animation-duration: 17s; width: 4px; height: 4px; background: rgba(6,182,212,0.15); }
.particle:nth-child(7) { left: 15%; top: 80%; animation-delay: -12s; animation-duration: 21s; }
.particle:nth-child(8) { left: 50%; top: 40%; animation-delay: -8s; animation-duration: 19s; }
.particle:nth-child(9) { left: 90%; top: 15%; animation-delay: -15s; animation-duration: 15s; background: rgba(236,72,153,0.12); }
.particle:nth-child(10) { left: 5%; top: 45%; animation-delay: -1s; animation-duration: 23s; width: 2px; height: 2px; }

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(30px, -60px) scale(0); opacity: 0; }
}

/* Phone glow */
.phone-glow {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.hero-mockup { position: relative; flex-shrink: 0; animation: float 6s ease-in-out infinite; }
.phone-frame { position: relative; z-index: 1; }

/* Trust bar */
.trust-bar { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.trust-bar span { font-size: 13px; color: #666; display: flex; align-items: center; gap: 6px; }
.trust-bar i { color: #3b82f6; font-size: 14px; }

/* Section dividers */
.section-divider { height: 1px; border: none; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.15), rgba(139,92,246,0.15), transparent); margin: 0 auto; max-width: 600px; }
.section-divider-wide { max-width: 960px; }

/* Features */
.features { max-width: 960px; margin: 0 auto; padding: 60px 20px 40px; }
.features h2 { font-size: 26px; margin-bottom: 8px; text-align: center; }
.features .subtitle { text-align: center; color: #888; font-size: 15px; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 28px 24px; text-align: center;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.2); box-shadow: 0 12px 40px rgba(59,130,246,0.1); }
.feature-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; 
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
  transition: 0.3s;
}
.feature-card:hover .icon-wrap { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.15); transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: #888; line-height: 1.5; }

/* Premium section */
.premium-section { max-width: 960px; margin: 0 auto; padding: 20px 20px 60px; text-align: center; }
.premium-section h2 { font-size: 26px; margin-bottom: 8px; }
.premium-section .subtitle { color: #888; font-size: 15px; margin-bottom: 40px; }
.premium-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #f59e0b;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.premium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.premium-card {
  background: rgba(245,158,11,0.02); border: 1px solid rgba(245,158,11,0.08);
  border-radius: 14px; padding: 28px 24px; text-align: center;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.premium-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.2); box-shadow: 0 12px 40px rgba(245,158,11,0.08); }
.premium-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
  transition: 0.3s;
}
.premium-card:hover .icon-wrap { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); transform: scale(1.08) rotate(-4deg); }
.premium-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.premium-card p { font-size: 14px; color: #888; line-height: 1.5; }

/* Stats bar */
.stats-bar { max-width: 600px; margin: 0 auto; display: flex; justify-content: center; gap: 12px; padding: 24px 20px; }
.stat-item {
  flex: 1; max-width: 180px; text-align: center; padding: 18px 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; transition: 0.2s;
}
.stat-item:hover { border-color: rgba(59,130,246,0.15); transform: translateY(-2px); }
.stat-item .stat-icon { font-size: 20px; margin-bottom: 6px; display: block; }
.stat-item .number { font-size: 24px; font-weight: 700; color: #f0f0f0; }
.stat-item .label { font-size: 12px; color: #888; margin-top: 2px; }

/* Featured bios */
.featured-section { max-width: 960px; margin: 0 auto; padding: 20px 20px 80px; }
.featured-section h2 { font-size: 22px; margin-bottom: 20px; text-align: center; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.bio-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 24px 16px; text-align: center;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bio-card:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(59,130,246,0.2); box-shadow: 0 12px 28px rgba(59,130,246,0.08); }
.bio-card .avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; overflow: hidden; transition: transform 0.3s ease;
}
.bio-card:hover .avatar { transform: scale(1.1) rotate(-4deg); }
.bio-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.bio-card .name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.bio-card .desc { font-size: 12px; color: #888; }
.bio-card .link-count { font-size: 11px; color: #555; margin-top: 6px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Footer */
.footer { text-align: center; padding: 30px 20px 40px; font-size: 13px; color: #555; border-top: 1px solid rgba(255,255,255,0.04); }

/* Dashboard */
.dashboard-layout {
  display: flex; max-width: 960px; margin: 0 auto; padding: 30px 20px; gap: 28px;
}
.dashboard-sidebar {
  width: 170px; flex-shrink: 0; position: sticky; top: 80px; align-self: flex-start;
  display: flex; flex-direction: column; gap: 2px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px;
  color: #888; cursor: pointer; transition: 0.2s; font-size: 14px; font-weight: 500;
  user-select: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.04); color: #e0e0e0; }
.sidebar-item.active { background: rgba(59,130,246,0.12); color: #3b82f6; font-weight: 600; }
.sidebar-item i { width: 18px; text-align: center; font-size: 15px; }
.dashboard-content { flex: 1; min-width: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel > .card + .card { margin-top: 20px; }
.effects-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.effects-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.effects-section h4 { font-size: 14px; font-weight: 600; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 680px) {
  .dashboard-layout { flex-direction: column; padding: 20px 16px; gap: 16px; }
  .dashboard-sidebar {
    width: 100%; position: static; flex-direction: row; overflow-x: auto; gap: 0;
    background: rgba(255,255,255,0.02); border-radius: 10px; padding: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar-item {
    flex-shrink: 0; white-space: nowrap; padding: 8px 12px; font-size: 13px;
  }
  .sidebar-item i { display: none; }
}
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px; }
.card h3 { font-size: 17px; margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: #aaa; margin-bottom: 4px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 9px 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; font-size: 14px;
  background: rgba(0,0,0,0.3); color: #e0e0e0;
}
.form-group textarea { resize: vertical; min-height: 60px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-row { display: flex; gap: 12px; align-items: flex-end; }
.form-row .form-group { flex: 1; }
.form-row .form-group:last-child { flex: 0 0 auto; }

/* Select dropdown */
.form-select {
  width: 100%; padding: 9px 32px 9px 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  font-size: 14px; background: rgba(0,0,0,0.3); color: #e0e0e0; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select:hover { border-color: rgba(255,255,255,0.15); }
.form-select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-select option { background: #1a1a2e; color: #e0e0e0; }

/* Radio pill group */
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-label {
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  cursor: pointer; font-size: 13px; transition: 0.2s; user-select: none;
}
.radio-label:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.03); }
.radio-label.checked { border-color: #3b82f6; background: rgba(59,130,246,0.08); color: #93bbfb; }
.radio-label input { display: none; }

/* Add button */
.btn-add { padding: 9px 18px; background: #3b82f6; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 500; margin-top: 22px; transition: background 0.2s; }
.btn-add:hover { background: #2563eb; }

/* Public bio page */
.bio-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; position: relative; z-index: 1; }
.bio-card-container {
  --glass-alpha: 0.03;
  background: rgba(255,255,255, var(--glass-alpha)); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px; width: 100%; max-width: 420px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.bio-card-container.card-solid { background: #151525; backdrop-filter: none; }
.bio-card-container.card-minimal { background: transparent; backdrop-filter: none; border: none; box-shadow: none; }
.bio-card-container.card-bordered { border-width: 2px; border-style: solid; }
.bio-card-container .profile-pic {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; background: rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  position: relative; z-index: 0;
}
.bio-card-container .profile-pic img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Profile pic effects */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes picGlow {
  0%, 100% { box-shadow: 0 0 8px var(--pic-color, #3b82f6), 0 0 16px var(--pic-color, #3b82f6); }
  50% { box-shadow: 0 0 18px var(--pic-color, #3b82f6), 0 0 32px var(--pic-color, #3b82f6); }
}
@keyframes picPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pic-color, #3b82f640); }
  50% { box-shadow: 0 0 0 10px var(--pic-color, transparent); }
}
.profile-pic.pic-rainbow { overflow: visible; background: none; }
.pic-rainbow::before {
  content: ''; position: absolute; z-index: -1;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%;
  background: conic-gradient(#ff0000, #ff8800, #ffff00, #00ff00, #0088ff, #8800ff, #ff0000);
  animation: spin 2s linear infinite;
}
.profile-pic.pic-glow { overflow: visible; animation: picGlow 2s ease-in-out infinite; }
.profile-pic.pic-pulse { overflow: visible; animation: picPulse 1.5s ease-in-out infinite; }

/* Display name effects */
@keyframes nameGlow {
  0%, 100% { text-shadow: 0 0 4px var(--pic-color, #3b82f680), 0 0 8px var(--pic-color, transparent); }
  50% { text-shadow: 0 0 8px var(--pic-color, #3b82f6), 0 0 16px var(--pic-color, #3b82f680); }
}
@keyframes nameShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes namePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.name-gradient {
  background: linear-gradient(90deg, var(--pic-color, #3b82f6), #8b5cf6, #06b6d4, var(--pic-color, #3b82f6));
  background-size: 300% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: nameShimmer 4s ease-in-out infinite;
}
.name-glow { animation: nameGlow 2s ease-in-out infinite; }
.name-shimmer {
  background: linear-gradient(90deg, transparent 0%, var(--pic-color, #3b82f6) 50%, transparent 100%);
  background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: nameShimmer 3s ease-in-out infinite;
}
.name-pulse { animation: namePulse 2s ease-in-out infinite; }

/* Typing cursor */
.typing-cursor {
  display: inline-block; margin-left: 1px; font-weight: 300;
  animation: blinkCursor 0.6s step-end infinite; color: inherit;
}
.typing-cursor.typing-done { animation: blinkCursor 0.6s step-end 2; }
@keyframes blinkCursor { 50% { opacity: 0; } }

.bio-card-container .display-name { font-size: 24px; font-weight: 700; margin-bottom: 6px; text-align: center; }
.bio-card-container .bio-text { font-size: 15px; color: #aaa; text-align: center; margin-bottom: 24px; }

/* Cursor effects */
.card-mouse-tilt, .card-mouse-tilt-strong {
  transition: transform 0.15s ease-out; transform-style: preserve-3d;
}
/* Page layouts */
.bio-card-container.layout-left-align { text-align: left; }
.bio-card-container.layout-left-align .profile-pic { margin-left: 0; }
.bio-card-container.layout-left-align .display-name { text-align: left; }
.bio-card-container.layout-left-align .bio-text { text-align: left; }
.bio-card-container.layout-left-align .username-display { text-align: left; }
.bio-card-container.layout-left-align #bioBadges { margin-left: 0; margin-right: 0; }
.bio-card-container.layout-left-align .bio-social { justify-content: flex-start; }
.bio-card-container.layout-full-width { max-width: 100%; width: 100%; }
.bio-card-container.layout-two-column .bio-content { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.bio-card-container.layout-two-column .bio-content .profile-pic { grid-column: 1 / -1; justify-self: center; }
.bio-card-container.layout-two-column .bio-content .display-name { grid-column: 1 / -1; }
.bio-card-container.layout-two-column .bio-content .username-display { grid-column: 1 / -1; }
.bio-card-container.layout-two-column .bio-content #bioBadges { grid-column: 1 / -1; }
.bio-card-container.layout-two-column .bio-content .bio-social { grid-column: 1 / -1; }
.bio-card-container.layout-two-column .bio-content .spotify-embed { grid-column: 1 / -1; }

/* Spotify embed */
.spotify-embed { margin-top: 12px; margin-bottom: 8px; }
.spotify-embed iframe { height: 80px; }

.card-mouse-glow { position: relative; overflow: hidden; }
.card-glow {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 0; transition: background 0.05s;
}
.bio-card-container .username-display { font-size: 14px; color: #888; margin-bottom: 20px; text-align: center; }

/* Border effects (premium) */
.bio-card-container.border-glow {
  animation: borderGlow 2.5s ease-in-out infinite;
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 8px var(--pic-color, #3b82f640); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 24px var(--pic-color, #3b82f6); }
}

.bio-card-container.border-neon {
  animation: neonPulse 1.5s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { border-color: var(--pic-color, #3b82f6); box-shadow: 0 0 8px var(--pic-color, #3b82f640), inset 0 0 8px var(--pic-color, #3b82f620); }
  50% { border-color: rgba(255,255,255,0.6); box-shadow: 0 0 30px var(--pic-color, #3b82f6), 0 0 60px var(--pic-color, #3b82f640), inset 0 0 20px var(--pic-color, #3b82f640); }
}

.bio-card-container.border-shine {
  position: relative; overflow: hidden;
}
.bio-card-container.border-shine::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 55%, transparent 60%);
  background-size: 200% 100%;
  animation: shineMove 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shineMove {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Card entrance animations */
@keyframes animFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes animSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes animZoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes animFlip { from { opacity: 0; transform: perspective(600px) rotateX(60deg); } to { opacity: 1; transform: perspective(600px) rotateX(0); } }
@keyframes animBounce { 0% { opacity: 0; transform: translateY(-40px); } 40% { opacity: 1; transform: translateY(8px); } 70% { transform: translateY(-4px); } 90% { transform: translateY(2px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes animGlow { 0% { opacity: 0; box-shadow: 0 0 0 0 rgba(59,130,246,0); } 50% { opacity: 1; box-shadow: 0 0 60px 20px rgba(59,130,246,0.15); } 100% { opacity: 1; box-shadow: 0 8px 32px rgba(0,0,0,0.3); } }

.anim-fade { animation: animFade 0.6s ease-out both; }
.anim-slide-up { animation: animSlideUp 0.6s ease-out both; }
.anim-zoom-in { animation: animZoomIn 0.5s ease-out both; }
.anim-flip { animation: animFlip 0.7s ease-out both; }
.anim-bounce { animation: animBounce 0.7s ease both; }
.anim-glow { animation: animGlow 0.8s ease-out both; }

/* Badge icons with custom tooltip */
.badge-icon {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  transition: filter 0.2s;
}
.badge-icon:hover { filter: drop-shadow(0 0 8px currentColor) !important; }
.badge-icon::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) scale(0.8); background: rgba(0,0,0,0.85); color: #f0f0f0;
  padding: 4px 10px; border-radius: 6px; font-size: 12px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: 0.15s; z-index: 100;
}
.badge-icon::before {
  content: ''; position: absolute; bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) scale(0.85);
  border: 5px solid transparent; border-top-color: rgba(255,255,255,0.08);
  pointer-events: none; opacity: 0; transition: opacity 0.15s, transform 0.15s;
}
.badge-icon:hover::after { opacity: 1; transform: translateX(-50%) scale(1); }
.badge-icon:hover::before { opacity: 1; transform: translateX(-50%) scale(1); }

.bio-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.bio-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.1);
}

/* Bio skeleton */
.bio-skeleton { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; max-width: 480px; padding: 20px 0; }
.bio-skeleton .sk-avatar { width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,0.05); animation: skPulse 1.5s ease-in-out infinite; }
.bio-skeleton .sk-name { width: 180px; height: 24px; border-radius: 6px; background: rgba(255,255,255,0.05); animation: skPulse 1.5s ease-in-out infinite 0.2s; }
.bio-skeleton .sk-text { width: 260px; height: 16px; border-radius: 6px; background: rgba(255,255,255,0.05); animation: skPulse 1.5s ease-in-out infinite 0.4s; }
.bio-skeleton .sk-btn { width: 100%; height: 48px; border-radius: 10px; background: rgba(255,255,255,0.05); animation: skPulse 1.5s ease-in-out infinite; }
.bio-skeleton .sk-btn:nth-child(5) { animation-delay: 0.2s; }
.bio-skeleton .sk-btn:nth-child(6) { animation-delay: 0.4s; }
@keyframes skPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-content { background: #1a1a2e; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px; width: 100%; max-width: 420px; }
.modal-content h3 { font-size: 18px; margin-bottom: 16px; }
.modal-content .form-group { margin-bottom: 12px; }
.modal-content .form-group label { display: block; font-size: 13px; color: #aaa; margin-bottom: 4px; }
.modal-content .form-group input { width: 100%; padding: 9px 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; font-size: 14px; background: rgba(0,0,0,0.3); color: #e0e0e0; }
.modal-content .form-group input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }

/* Admin panel */
.dashboard-container { max-width: 820px; margin: 0 auto; padding: 30px 20px; }
.dashboard-header { margin-bottom: 24px; }
.dashboard-header h2 { font-size: 24px; font-weight: 700; color: #f0f0f0; }
.admin-layout { display: flex; flex-direction: column; gap: 24px; }
.admin-user-row.banned { opacity: 0.55; background: rgba(239,68,68,0.04); border-radius: 8px; padding: 12px 10px; margin: 0 -10px; }

/* Banned card on bio page */
.banned-card { text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(239,68,68,0.15); border-radius: 16px; padding: 48px 36px; max-width: 420px; width: 100%; backdrop-filter: blur(16px); }
.banned-card .banned-icon { font-size: 48px; color: #ef4444; margin-bottom: 16px; }
.banned-card h2 { font-size: 22px; color: #e0e0e0; font-weight: 600; line-height: 1.4; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); padding: 10px 20px; border-radius: 8px; font-size: 14px; color: #fff; display: none; z-index: 999; }
.toast.success { background: #22c55e; }
.toast.error { background: #ef4444; }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero .hero-badge { margin-left: auto; margin-right: auto; }
  .hero .cta-btns { justify-content: center; }
  .phone-frame { width: 220px; height: 420px; }
  .hero h1 { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 30px; }
  .hero { padding: 50px 16px 30px; }
  .phone-frame { width: 180px; height: 340px; padding: 10px 6px; }
  .phone-avatar { width: 36px; height: 36px; font-size: 16px; }
  .phone-name { font-size: 15px; }
  .phone-link { padding: 8px; font-size: 12px; }
  .phone-screen { gap: 6px; padding: 10px; }
  .auth-form { padding: 24px 20px; margin: 30px 16px; }
  .form-row { flex-direction: column; }
  .form-row .form-group:last-child { flex: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Click-to-enter overlay ─── */
.enter-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,20,0.97);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.enter-overlay.fade-out { opacity: 0; }
.enter-overlay-inner {
  text-align: center;
  animation: enterPulse 2s ease-in-out infinite;
}
.enter-icon {
  font-size: 48px; color: #3b82f6; margin-bottom: 20px;
}
.enter-text {
  font-size: 24px; color: #e0e0e0; font-weight: 500;
  letter-spacing: 0.5px;
}
@keyframes enterPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.03); opacity: 1; }
}

/* ─── Mini music player ─── */
.music-player {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
}
.music-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(59,130,246,0.2);
  color: #e0e0e0; font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}
.music-toggle:hover { background: rgba(59,130,246,0.35); transform: scale(1.1); }

/* ─── Background animations ─── */
.bg-animation { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* Rain */
.bg-anim-rain .r { position: absolute; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25)); animation: rainFall 1.2s linear infinite; pointer-events: none; }
@keyframes rainFall {
  0% { transform: translateY(-20px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Stars */
.bg-anim-stars .s { position: absolute; border-radius: 50%; pointer-events: none; animation: starTwinkle 4s ease-in-out infinite alternate; }
.bg-anim-stars .s-big { box-shadow: 0 0 6px 2px rgba(255,255,255,0.4); }
.bg-anim-stars .s-warm { background: #ffe9c7; box-shadow: 0 0 8px 3px rgba(255,200,150,0.35); }
.bg-anim-stars .s-blue { background: #c7e5ff; box-shadow: 0 0 8px 3px rgba(150,200,255,0.35); }
@keyframes starTwinkle {
  0% { opacity: 0.1; transform: scale(0.5); }
  50% { opacity: 0.9; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Floating shapes */
.bg-anim-floating-shapes::before,
.bg-anim-floating-shapes::after {
  content: ''; position: absolute; border-radius: 50%; opacity: 0.06;
  animation: shapesFloat 14s ease-in-out infinite;
}
.bg-anim-floating-shapes::before {
  width: 280px; height: 280px; background: #3b82f6;
  top: -60px; left: -80px;
}
.bg-anim-floating-shapes::after {
  width: 200px; height: 200px; background: #8b5cf6;
  bottom: 10%; right: -50px; animation-delay: -6s;
}
.bg-anim-floating-shapes .shape {
  position: absolute; border-radius: 50%; opacity: 0.06;
  animation: shapesFloat 16s ease-in-out infinite;
}
.bg-anim-floating-shapes .shape:nth-child(1) {
  width: 140px; height: 140px; background: #06b6d4;
  top: 40%; left: 60%; animation-delay: -10s;
}
.bg-anim-floating-shapes .shape:nth-child(2) {
  width: 100px; height: 100px; background: #f59e0b;
  top: 70%; left: 15%; animation-delay: -3s; animation-duration: 18s;
}
.bg-anim-floating-shapes .shape:nth-child(3) {
  width: 160px; height: 160px; background: #ec4899;
  top: 15%; left: 45%; animation-delay: -8s; animation-duration: 12s;
}
.bg-anim-floating-shapes .shape:nth-child(4) {
  width: 80px; height: 80px; background: #10b981;
  bottom: 30%; right: 20%; animation-delay: -12s; animation-duration: 20s;
}
@keyframes shapesFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-25px) scale(1.06); }
  66% { transform: translateY(12px) scale(0.94); }
}

/* ─── Business verified badge ─── */
.business-verified {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f59e0b;
  color: #0a0a14;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245,158,11,0.5);
   line-height: 1;
 }

/* ─── FAQ section ─── */
.faq-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.faq-section h2 { font-size: 28px; margin-bottom: 6px; }
.faq-list { margin-top: 40px; text-align: left; }
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: '+';
  font-size: 18px;
  color: #666;
  transition: 0.2s;
  margin-left: 12px;
}
.faq-item.open .faq-question::after { content: '–'; color: #f59e0b; }
.faq-answer {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-top: 10px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Business card toggle button ─── */
.biz-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(245,158,11,0.3); background: rgba(245,158,11,0.06);
  color: #f59e0b; cursor: pointer; transition: 0.2s;
  margin-top: 16px;
}
.biz-toggle-btn:hover { background: rgba(245,158,11,0.12); border-color: #f59e0b; }

.nav-link { color: #888; text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.2s; padding: 6px 0; }
.nav-link:hover { color: #f0f0f0; }

/* ─── Business card slide animation ─── */
.card-exit {
  opacity: 0 !important;
  transform: translateX(-40px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
}
@keyframes cardEnter {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.card-enter {
  animation: cardEnter 0.3s ease forwards !important;
}

/* ─── Business tier cards ─── */
.tier-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.2); box-shadow: 0 8px 24px rgba(245,158,11,0.08); }

/* ─── Mobile responsive additions ─── */
@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .navbar .logo { font-size: 18px; }
  .navbar .nav-links { gap: 6px; }
  .navbar .nav-links a { padding: 6px 12px; font-size: 13px; }
  .btn-primary, .btn-outline, .btn-danger { padding: 6px 14px; font-size: 13px; }
  .container { padding: 24px 16px; }
  .bio-page { padding: 20px 12px; }
  .bio-card-container { padding: 24px 16px; }
  .bio-card-container .profile-pic { width: 72px; height: 72px; font-size: 28px; }
  .bio-card-container .display-name { font-size: 20px; }
  .bio-card-container .bio-text { font-size: 13px; }
  .bio-card-container .username-display { font-size: 12px; }
  .bio-social-btn { width: 34px; height: 34px; font-size: 14px; }
  .bio-card-container.layout-two-column .bio-content { grid-template-columns: 1fr; }
  .enter-icon { font-size: 36px; }
  .enter-text { font-size: 20px; }
  .music-player { bottom: 16px; right: 16px; }
  .music-toggle { width: 38px; height: 38px; font-size: 14px; }
  .footer { padding: 20px 16px 32px; font-size: 12px; }
  .faq-section { padding: 40px 16px; }
  .faq-section h2 { font-size: 22px; }
  .faq-item { padding: 14px 16px; }
  .faq-question { font-size: 13px; }
  .faq-answer { font-size: 13px; }
  .premium-section { padding: 20px 16px 40px; }
  .premium-section h2 { font-size: 22px; }
  .premium-card { padding: 20px 16px; }
  .features { padding: 40px 16px 30px; }
  .features h2 { font-size: 22px; }
  .feature-card { padding: 20px 16px; }
  .stats-bar { gap: 8px; padding: 16px 12px; }
  .stat-item { padding: 12px 8px; }
  .stat-item .number { font-size: 20px; }
  .featured-section { padding: 20px 16px 60px; }
  .tab-panel > .card { padding: 16px; }
  .dashboard-container { padding: 20px 12px; }
  .modal-content { padding: 20px; }
  .biz-toggle-btn { font-size: 12px; padding: 8px 16px; }
  .hero { padding: 50px 16px 30px; }
  .hero .hero-badge { font-size: 11px; padding: 4px 12px; }
  .banned-card { padding: 32px 20px; }
  .banned-card .banned-icon { font-size: 36px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-section h2 { font-size: 20px; }
  #businessCard { padding: 0; }
  #businessCard .bio-card-container .profile-pic { width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 12px; height: 52px; }
  .navbar .logo { font-size: 16px; }
  .navbar .nav-links a { padding: 4px 10px; font-size: 12px; }
  .btn-primary, .btn-outline, .btn-danger { padding: 5px 12px; font-size: 12px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero .cta-btns a { padding: 12px 24px; font-size: 14px; }
  .hero .hero-badge { font-size: 10px; padding: 3px 10px; }
  .phone-frame { display: none; }
  .hero-mockup { display: none; }
  .auth-form { padding: 20px 16px; margin: 20px 12px; }
  .auth-form h2 { font-size: 20px; }
  .bio-card-container .profile-pic { width: 64px; height: 64px; font-size: 24px; }
  .bio-card-container .display-name { font-size: 18px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bio-card { padding: 18px 12px; }
  .bio-card .avatar { width: 48px; height: 48px; font-size: 20px; }
  .bio-card .name { font-size: 13px; }
  .faq-section h2 { font-size: 20px; }
  .stats-bar { gap: 6px; }
  .stat-item { padding: 10px 6px; }
  .stat-item .number { font-size: 18px; }
  .tab-panel > .card { padding: 12px; }
  .card h3 { font-size: 15px; }
  .dashboard-sidebar { gap: 0; padding: 2px; }
  .sidebar-item { padding: 6px 10px; font-size: 12px; }
  .footer { padding: 16px 12px 24px; font-size: 11px; }
  .container { padding: 20px 12px; }
  .enter-icon { font-size: 32px; }
  .enter-text { font-size: 17px; }
  .modal-content { padding: 16px; }
  .modal-content h3 { font-size: 16px; }
  .directory-header h1 { font-size: 22px; }
}
