@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg: #0b0b14;
  --bg2: #11111d;
  --bg3: #18182a;
  --card: #13131f;
  --pink: #e91e8c;
  --pink2: #f06292;
  --pink-glow: rgba(233,30,140,0.3);
  --purple: #7c3aed;
  --text: #ffffff;
  --text-muted: #8b8b9e;
  --border: rgba(255,255,255,0.07);
  --radius: 14px;
  --sidebar: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

/* ─── SIDEBAR ─── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 6px;
  z-index: 100;
}

.sidebar-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.sidebar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.2s;
  position: relative;
}
.sidebar-icon:hover, .sidebar-icon.active {
  background: var(--bg3);
  color: var(--pink);
}
.sidebar-icon.active::before {
  content: '';
  position: absolute;
  left: -1px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 24px;
  background: var(--pink);
  border-radius: 0 3px 3px 0;
}

.sidebar-divider {
  width: 32px; height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: var(--sidebar);
  right: 0;
  height: 60px;
  background: rgba(11,11,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 99;
}

.header-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.header-logo .logo-text span { color: var(--pink); }

.header-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 4px;
}
.header-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.header-tab:hover { color: var(--text); }
.header-tab.active {
  background: linear-gradient(135deg, var(--pink), #c2185b);
  color: #fff;
  box-shadow: 0 0 16px var(--pink-glow);
}

.header-actions { display: flex; gap: 10px; }

.btn {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #c2185b);
  color: #fff;
  box-shadow: 0 0 20px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--pink-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* ─── LAYOUT ─── */
.main {
  margin-left: var(--sidebar);
  padding-top: 60px;
  min-height: 100vh;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a0a2e 50%, #0f0f1e 100%);
  padding: 40px 0 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,30,140,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.hero-images {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: -20px;
  position: relative;
  height: 320px;
}

.hero-img {
  width: 150px;
  height: 300px;
  border-radius: 14px;
  object-fit: cover;
  object-position: top;
  position: absolute;
  bottom: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-img:nth-child(1) { left: 0; z-index: 3; width: 140px; height: 280px; }
.hero-img:nth-child(2) { left: 90px; z-index: 4; width: 160px; height: 310px; }
.hero-img:nth-child(3) { left: 195px; z-index: 3; width: 140px; height: 280px; }

.hero-content {
  flex: 1;
  padding: 0 40px 40px 0;
  text-align: right;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .pink { color: var(--pink); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink), #c2185b);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 30px var(--pink-glow);
  border: none;
  text-decoration: none;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--pink-glow);
}

/* ─── SECTION ─── */
.section { padding: 36px 0; }

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title .pink { color: var(--pink); }

/* ─── HORIZONTAL SCROLL ROW ─── */
.scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

/* ─── CHARACTER CARD ─── */
.char-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--card);
  border: 1px solid var(--border);
}
.char-card:hover { transform: translateY(-4px); }

.char-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.char-card-img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-muted);
}

.char-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.char-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.char-card-name .age { font-weight: 400; opacity: 0.7; }

.char-card-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.char-action-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s;
}
.char-action-btn:hover { transform: scale(1.1); }
.char-action-btn.eye { background: rgba(255,255,255,0.12); }
.char-action-btn.phone {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 12px var(--pink-glow);
}

.badge-live {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.badge-new {
  position: absolute;
  top: 38px; left: 10px;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.char-card-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.char-card-likes .flame { color: var(--pink); }

/* ─── GRID CARDS (Explore section) ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--card);
  border: 1px solid var(--border);
}
.grid-card:hover { transform: translateY(-4px); }

.grid-card-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.grid-card-img-placeholder {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.grid-card-body {
  padding: 14px 14px 16px;
  background: var(--card);
}

.grid-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.grid-card-name {
  font-size: 17px;
  font-weight: 700;
}
.grid-card-name .age {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
}

.grid-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.grid-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-card-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}
.grid-card-likes .flame { color: var(--pink); }

.grid-card-btns { display: flex; gap: 6px; }

.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.icon-btn.eye { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.icon-btn.eye:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.icon-btn.phone {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 0 12px var(--pink-glow);
}
.icon-btn.phone:hover { transform: scale(1.1); }

/* ─── FEATURES SECTION ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(233,30,140,0.3); }

.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(124,58,237,0.15));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-left: var(--sidebar);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-brand-logo span { color: var(--pink); }

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--pink); }

/* ─── LOGIN PAGE ─── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 70%);
}
.auth-page::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
}

.auth-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo .logo-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
  box-shadow: 0 0 40px var(--pink-glow);
}

.auth-logo .logo-name {
  font-size: 20px;
  font-weight: 700;
}
.auth-logo .logo-name span { color: var(--pink); }

.auth-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--pink); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }

.btn-full {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-login {
  background: linear-gradient(135deg, var(--pink), #c2185b);
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow);
  margin-bottom: 12px;
}
.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 32px var(--pink-glow);
}

.btn-guest {
  background: var(--bg3);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-guest:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.social-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  font-family: inherit;
  margin-bottom: 10px;
}
.social-btn:hover { background: var(--bg3); border-color: rgba(255,255,255,0.15); }

.auth-terms {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}
.auth-terms a { color: var(--pink); }

/* ─── MAINTENANCE PAGE ─── */
.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.maintenance-page::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.maintenance-box {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.maintenance-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(124,58,237,0.15));
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pink-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

.maintenance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.maintenance-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.maintenance-logo span { color: var(--pink); }

.maintenance-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.maintenance-title .pink { color: var(--pink); }

.maintenance-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.email-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 32px;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--pink); }
.email-input::placeholder { color: rgba(255,255,255,0.25); }

.btn-notify {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--pink), #c2185b);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--pink-glow);
}
.btn-notify:hover { transform: translateY(-1px); }

.notify-success {
  display: none;
  color: #4caf50;
  font-size: 14px;
  margin-bottom: 20px;
}

.maintenance-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.maint-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.maint-badge .dot { color: var(--pink); }

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.count-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 70px;
  text-align: center;
}
.count-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
}
.count-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.back-home {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.back-home:hover { color: var(--pink); }

/* ─── MOBILE BOTTOM NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  z-index: 100;
}

.mobile-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding: 0 8px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 10px;
  transition: color 0.2s;
}
.mobile-nav-item.active { color: var(--pink); }
.mobile-nav-item .icon { font-size: 20px; }

.mobile-nav-plus {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 0 20px var(--pink-glow);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sidebar: 0px; }

  .sidebar { display: none; }
  .header { left: 0; padding: 0 16px; }
  .header-tabs { display: none; }
  .header-logo .logo-text { font-size: 16px; }

  .main { padding-bottom: 80px; }

  .hero-inner { flex-direction: column-reverse; }
  .hero-images { height: 240px; justify-content: center; }
  .hero-content { text-align: center; padding: 0 20px 0; }
  .hero-title { font-size: 28px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer { margin-left: 0; }

  .mobile-nav { display: flex; }

  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }

  .auth-box { padding: 32px 24px; margin: 16px; }
  .email-form { flex-direction: column; }
}
