/* ============================================================
   NEXASTAR MANAGEMENT GROUP — Main Stylesheet
   Fully responsive, mobile-first, all devices
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --gold: #b8952a;
  --gold-light: #d4aa30;
  --dark: #1a1a2e;
  --mid: #16213e;
  --white: #ffffff;
  --light: #f8f9fc;
  --text: #2d2d2d;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAVBAR ── */
.nexastar-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  z-index: 1050;
  position: sticky;
  top: 0;
}
.nexastar-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 64px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1060;
}
.nav-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain !important;
  display: block !important;
}
.brand-text { font-size: 1.25rem; font-weight: 900; letter-spacing: 1.5px; color: var(--dark); text-transform: uppercase; }
.brand-accent { color: var(--gold); }
.brand-text-fallback { display: none; font-size: 1.15rem; font-weight: 900; color: var(--dark); letter-spacing: 1px; }

/* Mobile hamburger */
.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 8px 11px;
  cursor: pointer;
  z-index: 1060;
  display: none;
}
.navbar-toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 0;
}
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top: 7px; }

/* Nav links */
.navbar-collapse {
  display: flex;
  align-items: center;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-item { display: flex; align-items: center; }
.nav-link {
  font-weight: 500;
  color: #444 !important;
  font-size: .9rem;
  letter-spacing: .3px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold) !important; background: rgba(184,149,42,.06); }
.btn-nav {
  background: var(--dark) !important;
  color: #fff !important;
  border-radius: 7px;
  padding: 8px 20px !important;
  font-weight: 700;
  font-size: .88rem;
}
.btn-nav:hover { background: var(--gold) !important; color: #fff !important; }
.btn-nav-outline {
  border: 2px solid var(--dark);
  border-radius: 7px;
  padding: 6px 18px !important;
  color: var(--dark) !important;
  font-weight: 700;
}
.btn-nav-outline:hover { background: var(--dark); color: #fff !important; }
.btn-nav-gold {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 7px;
  padding: 8px 18px !important;
  font-weight: 700;
}
.ms-auto { margin-left: auto !important; }
.ms-1, .ms-2 { margin-left: 6px !important; }
.me-1, .me-2 { margin-right: 6px !important; }
.gap-1 { gap: 4px !important; }

/* ── BUTTONS ── */
.btn-primary-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 34px;
  border-radius: 7px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.btn-primary-cta:hover { background: #9e7d22; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,149,42,.35); }
.btn-outline-cta {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: 12px 32px;
  border-radius: 7px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s;
  text-align: center;
}
.btn-outline-cta:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }
.btn-outline-dark-cta {
  display: inline-block;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 10px 26px;
  border-radius: 7px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s;
  text-align: center;
}
.btn-outline-dark-cta:hover { background: var(--dark); color: #fff; }
.btn-talent-view {
  display: inline-block;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 8px 22px;
  border-radius: 7px;
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
}
.btn-talent-view:hover { background: var(--dark); color: #fff; }
.btn-copy-wallet {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 5px;
  font-size: .82rem;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 600;
  transition: all .2s;
}
.btn-copy-wallet:hover { background: var(--gold); }

/* ── HERO ── */
.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff06' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L0,320Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.78;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 54px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  flex-wrap: wrap;
}
.hero-stat h3 { font-size: 2.3rem; font-weight: 900; color: var(--gold); margin: 0; }
.hero-stat p { color: rgba(255,255,255,.62); font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; margin: 0; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* ── SECTIONS ── */
.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.section-eyebrow {
  font-size: .78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-divider { width: 58px; height: 3px; background: var(--gold); margin: 18px 0; }
.section-text { color: var(--muted); font-size: 1.02rem; line-height: 1.78; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark), #302b63);
  padding: 70px 0 50px;
  color: #fff;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}
.page-hero p { color: rgba(255,255,255,.72); margin-top: 10px; }

/* ── ABOUT CARDS ── */
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all .3s;
}
.about-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.about-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--dark), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.about-icon i { color: #fff; font-size: 1.2rem; }
.about-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.about-card p { color: var(--muted); font-size: .88rem; line-height: 1.66; }

/* ── CATEGORY CARDS ── */
.cat-card-link { text-decoration: none; display: block; }
.cat-card {
  border-radius: 12px;
  background: var(--dark);
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
}
.cat-card:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.cat-icon-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; opacity: .1;
}
.cat-body { position: relative; z-index: 2; padding: 22px; width: 100%; }
.cat-accent-bar { width: 38px; height: 3px; background: var(--gold); margin-bottom: 10px; }
.cat-body h5 { color: #fff; font-weight: 700; margin-bottom: 3px; font-size: 1rem; }
.cat-body span { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ── TALENT CARDS ── */
.talent-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: all .3s;
  background: #fff;
  border: 1px solid var(--border);
}
.talent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.talent-img-wrap { position: relative; overflow: hidden; height: 280px; }
.talent-img {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
  display: block; transition: transform .4s;
}
.talent-card:hover .talent-img { transform: scale(1.05); }
.talent-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}
.talent-body { padding: 22px; }
.talent-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.talent-intro { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }

/* ── FILTER PILLS ── */
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  padding: 7px 18px; border-radius: 25px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .2s; border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
}
.filter-pill:hover, .filter-pill.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ── GALLERY ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; display: flex;
  align-items: center; justify-content: center;
  font-size: 3.5rem; transition: all .3s;
  cursor: pointer; position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item.gallery-tall { grid-row: span 2; aspect-ratio: auto; min-height: 300px; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-caption-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; padding: 20px 14px 12px;
  font-size: .82rem; font-weight: 500;
  border-radius: 0 0 10px 10px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark), #302b63);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff04' d='M0,224L60,213.3C120,203,240,181,360,181.3C480,181,600,203,720,202.7C840,203,960,181,1080,170.7C1200,160,1320,160,1380,160L1440,160L1440,320L0,320Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-weight: 900; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.74); font-size: 1.08rem; max-width: 520px; margin: 0 auto 34px; }

/* ── TALENT PROFILE ── */
.profile-hero { background: linear-gradient(135deg, var(--dark), #302b63); padding: 80px 0 50px; color: #fff; }
.profile-img-wrap {
  width: 200px; height: 200px;
  border-radius: 16px; overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.profile-img { width: 100%; height: 100%; object-fit: cover; }
.profile-cat-badge {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 5px 16px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 12px; text-transform: uppercase;
}
.profile-name { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
.profile-intro { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.profile-bio { color: var(--muted); line-height: 1.88; font-size: 1.02rem; }
.profile-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-meta-item { background: var(--light); padding: 8px 16px; border-radius: 20px; font-size: .85rem; color: var(--dark); font-weight: 500; }

/* ── FORMS ── */
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow);
}
.form-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.form-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 7px;
  padding: 11px 14px; font-size: .94rem; outline: none;
  transition: all .2s; font-family: inherit; color: var(--text);
  background: #fff; display: block;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,42,.1); }
textarea.form-input { resize: vertical; }
.form-label-custom { display: block; font-size: .83rem; font-weight: 600; color: #444; margin-bottom: 6px; }

/* ── ENQUIRY CARD ── */
.enquiry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); position: sticky; top: 80px;
}
.enquiry-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.enquiry-card input, .enquiry-card textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 7px;
  padding: 11px 14px; font-size: .9rem; outline: none;
  transition: all .2s; font-family: inherit; margin-bottom: 14px; display: block;
}
.enquiry-card input:focus, .enquiry-card textarea:focus { border-color: var(--gold); }

/* ── CONTACT ── */
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-icon { width: 44px; height: 44px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon i { color: var(--gold); }
.contact-info-item strong { display: block; color: var(--dark); font-size: .9rem; margin-bottom: 2px; }
.contact-info-item span { color: var(--muted); font-size: .9rem; }

/* ── AUTH ── */
.auth-page-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29, #302b63);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.auth-box {
  background: #fff; border-radius: 18px;
  padding: 46px 42px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.auth-logo-wrap { text-align: center; margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; }
.auth-logo-img { height: 52px !important; width: auto !important; max-width: 160px !important; object-fit: contain !important; margin: 0 auto 8px; display: block; }
.auth-logo-text { font-size: 1.4rem; font-weight: 900; color: var(--dark); letter-spacing: 1px; }
.auth-logo-text em { color: var(--gold); font-style: normal; }
.auth-site-name { text-align: center; font-weight: 600; color: var(--dark); font-size: 1rem; margin: 0 0 4px; display: block; width: 100%; }
.auth-title { text-align: center; font-weight: 700; color: var(--dark); margin-bottom: 28px; font-size: 1.15rem; }
.form-group-auth { margin-bottom: 18px; }
.form-group-auth label { display: block; font-size: .84rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group-auth input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 7px;
  padding: 12px 14px; font-size: .94rem; outline: none;
  transition: all .2s; font-family: inherit;
}
.form-group-auth input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,42,.1); }
.btn-auth-submit {
  width: 100%; background: var(--dark); color: #fff; border: none;
  padding: 13px; border-radius: 7px; font-weight: 700; font-size: .96rem;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.btn-auth-submit:hover { background: var(--gold); }
.auth-switch { text-align: center; margin-top: 18px; font-size: .88rem; color: var(--muted); }
.auth-switch a { color: var(--gold); font-weight: 600; }
.auth-logo { text-align: center; font-size: 1.45rem; font-weight: 900; color: var(--dark); letter-spacing: 1px; margin-bottom: 8px; }
.auth-logo em { color: var(--gold); font-style: normal; }

/* ── DASHBOARD ── */
.dashboard-wrap { background: var(--light); min-height: 80vh; padding: 50px 0; }
.dash-sidebar {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: sticky; top: 80px;
}
.dash-avatar {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--dark), var(--gold));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.7rem; color: #fff;
  font-weight: 700; margin: 0 auto 12px;
}
.dash-user-name { text-align: center; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.dash-user-email { text-align: center; font-size: .82rem; color: var(--muted); }
.dash-nav { margin-top: 16px; }
.dash-nav-link {
  display: flex; align-items: center;
  padding: 10px 14px; border-radius: 8px;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all .2s; text-decoration: none;
  margin-bottom: 2px;
}
.dash-nav-link:hover, .dash-nav-link.active { background: var(--light); color: var(--dark); font-weight: 600; }
.dash-section-title { font-weight: 800; color: var(--dark); margin-bottom: 24px; font-size: 1.3rem; }
.dash-stat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.dsc-icon { width: 42px; height: 42px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dsc-icon.blue { background: #e8f0fe; } .dsc-icon.blue i { color: #1967d2; }
.dsc-icon.green { background: #d1e7dd; } .dsc-icon.green i { color: #0f5132; }
.dsc-icon.gold { background: #fff3cd; } .dsc-icon.gold i { color: #856404; }
.dash-stat-card h3 { font-size: 1.9rem; font-weight: 800; color: var(--dark); margin: 0; }
.dash-stat-card p { color: var(--muted); font-size: .84rem; margin: 0; }
.dash-tab { /* shown/hidden by JS */ }
.empty-state { text-align: center; padding: 50px 20px; color: var(--muted); }

/* ── TABLE ── */
.nexastar-table { width: 100%; border-collapse: collapse; }
.nexastar-table th {
  background: var(--light); padding: 12px 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: #555;
  border-bottom: 2px solid var(--border); text-align: left;
}
.nexastar-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.nexastar-table tr:last-child td { border-bottom: none; }
.nexastar-table tr:hover td { background: var(--light); }

/* ── BOOKING / PAYMENT ── */
.booking-steps { display: flex; align-items: flex-start; gap: 0; }
.bstep { flex: 1; text-align: center; position: relative; }
.bstep::after { content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.bstep:last-child::after { display: none; }
.bstep-num { width: 36px; height: 36px; border-radius: 50%; background: var(--border); color: #888; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; margin: 0 auto 8px; position: relative; z-index: 1; }
.bstep.active .bstep-num { background: var(--dark); color: #fff; }
.bstep.done .bstep-num { background: var(--gold); color: #fff; }
.bstep p { font-size: .78rem; color: #888; margin: 0; }
.bstep.active p { color: var(--dark); font-weight: 600; }
.summary-table { width: 100%; font-size: .9rem; }
.summary-table td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.summary-table td:first-child { color: var(--muted); width: 40%; }
.summary-table tr:last-child td { border-bottom: none; }
.wallet-row { background: var(--light); border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; border: 1px solid var(--border); }
.wallet-header { font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: 6px; }
.wallet-address { font-family: monospace; font-size: .84rem; color: #444; word-break: break-all; }

/* ── FOOTER ── */
.nexastar-footer { background: #0f0c29; color: rgba(255,255,255,.72); padding: 70px 0 28px; }
.footer-top { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: 1px; margin-bottom: 14px; }
.footer-brand span { color: var(--gold); }
.footer-logo-link { display: inline-block; }
.footer-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; transition: opacity .2s; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-brand-fallback { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: 1px; }
.footer-brand-fallback span { color: var(--gold); }
.footer-tagline { font-size: .9rem; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; transition: all .2s; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.nexastar-footer a { display: block; color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 10px; transition: all .2s; }
.nexastar-footer a:hover { color: var(--gold); }
.footer-subscribe { display: flex; gap: 8px; }
.footer-subscribe input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 5px; padding: 9px 14px; color: #fff; font-size: .88rem; outline: none; }
.footer-subscribe button { background: var(--gold); border: none; color: #fff; padding: 9px 18px; border-radius: 5px; cursor: pointer; font-weight: 700; font-size: .88rem; }
.footer-contact { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; }
.footer-bottom { padding-top: 24px; margin-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.35); }

/* ── ADMIN ── */
.admin-wrap { background: var(--light); min-height: 100vh; }
.admin-sidebar { background: var(--dark); min-height: 100vh; padding: 0; }
.admin-nav-brand { padding: 24px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-nav-brand h5 { color: #fff; font-weight: 800; font-size: 1.1rem; margin: 0; }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 20px; color: rgba(255,255,255,.65); font-size: .88rem; font-weight: 500; transition: all .2s; text-decoration: none; border-left: 3px solid transparent; }
.admin-nav-link:hover, .admin-nav-link.active { color: #fff; background: rgba(255,255,255,.08); border-left-color: var(--gold); }
.admin-main { padding: 30px; }
.admin-header { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 30px; display: flex; align-items: center; justify-content: space-between; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.admin-stat { text-align: center; padding: 20px; }
.admin-stat h3 { font-size: 2rem; font-weight: 900; color: var(--dark); }
.admin-stat p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ── UTILITY CLASSES ── */
.text-center { text-align: center; }
.text-muted { color: var(--muted) !important; }
.text-danger { color: #dc3545 !important; }
.text-success { color: #198754 !important; }
.text-capitalize { text-transform: capitalize; }
.fw-bold { font-weight: 700 !important; }
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.mt-1 { margin-top: .4rem; } .mt-2 { margin-top: .6rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.6rem; }
.mb-1 { margin-bottom: .4rem; } .mb-2 { margin-bottom: .6rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.6rem; }
.p-0 { padding: 0 !important; }
.w-100 { width: 100% !important; }
.sticky-top { position: sticky; top: 0; z-index: 1020; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 16px; font-size: .93rem; }
.alert-success { background: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.alert-warning { background: #fff3cd; color: #664d03; border: 1px solid #ffecb5; }
.alert-danger { background: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }
.badge { display: inline-block; padding: .35em .65em; font-size: .75em; font-weight: 700; border-radius: 4px; text-transform: capitalize; }
.bg-success { background: #198754 !important; color: #fff !important; }
.bg-warning { background: #ffc107 !important; color: #000 !important; }
.bg-danger { background: #dc3545 !important; color: #fff !important; }
.bg-primary { background: #0d6efd !important; color: #fff !important; }
.bg-secondary { background: #6c757d !important; color: #fff !important; }
.bg-info { background: #0dcaf0 !important; color: #000 !important; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 992px)
══════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-content { padding: 60px 0; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .profile-img-wrap { width: 140px; height: 140px; }
  .section { padding: 70px 0; }

  /* Mobile navbar */
  .navbar-toggler { display: block; }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    z-index: 1040;
    padding: 12px 0;
  }
  .navbar-collapse.show { display: block; }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 16px;
  }
  .nav-item { width: 100%; }
  .nav-link { padding: 12px 16px !important; border-radius: 8px; font-size: .95rem; }
  .ms-auto { margin-left: 0 !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero-section { min-height: auto; }
  .hero-content { padding: 52px 0 42px; }
  .hero-eyebrow { font-size: .73rem; letter-spacing: 3px; }
  .hero-title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); line-height: 1.15; }
  .hero-subtitle { font-size: .97rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary-cta,
  .hero-actions .btn-outline-cta { width: 100%; max-width: 320px; text-align: center; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 28px; }
  .hero-stat h3 { font-size: 1.8rem; }
  .hero-stat-divider { display: none; }

  /* Sections */
  .section { padding: 52px 0; }
  .cta-section { padding: 64px 0; }

  /* Auth */
  .auth-box { padding: 32px 22px; }

  /* Forms */
  .form-card { padding: 20px 16px; }
  .page-hero { padding: 48px 0 32px; }

  /* Dashboard mobile layout */
  .dashboard-wrap { padding: 24px 0; }
  .dash-sidebar { position: static; margin-bottom: 20px; }
  .dash-sidebar.collapsed .dash-nav { display: none; }

  /* Profile */
  .profile-img-wrap { width: 120px; height: 120px; }
  .profile-hero { padding: 52px 0 36px; }

  /* Table — horizontal scroll */
  .nexastar-table { min-width: 500px; }

  /* Gallery */
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .auth-box { padding: 28px 16px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; gap: 8px; }
  .btn-primary-cta, .btn-outline-cta { padding: 12px 24px; }
  .admin-main { padding: 16px; }
  .nexastar-table th, .nexastar-table td { padding: 10px 10px; font-size: .82rem; }
}
