/* =============================================
   SoundNet — Dark Studio Aesthetic
   ============================================= */

:root {
  --bg:          #0a0a0c;
  --bg2:         #111116;
  --bg3:         #18181f;
  --border:      #2a2a35;
  --text:        #e8e8f0;
  --text-muted:  #888899;
  --accent:      #ff3c5f;
  --accent2:     #00d4aa;
  --accent3:     #7c5cfc;
  --gold:        #f5c842;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

/* ---- NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px; height: 64px;
}
.logo { display: flex; align-items: center; gap: 2px; font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; }
.logo-sound { color: var(--text); }
.logo-net   { color: var(--accent); }
.logo-dot   { color: var(--accent2); font-size: 12px; margin-left: 3px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.nav-center { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: center; }
.nav-center > a, .nav-dropdown > a {
  color: var(--text-muted); font-weight: 500; font-size: 14px;
  transition: color .2s; position: relative;
}
.nav-center > a:hover, .nav-dropdown > a:hover { color: var(--text); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 220px; padding: 8px 0; z-index: 200;
  box-shadow: var(--shadow);
  column-count: 2; column-gap: 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 8px 16px;
  color: var(--text-muted); font-size: 13px;
  break-inside: avoid;
}
.dropdown-menu a:hover { color: var(--text); background: var(--bg3); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-icon { color: var(--text-muted); position: relative; display: flex; align-items: center; }
.nav-icon:hover { color: var(--text); }
.nav-icon.has-badge::after {
  content: attr(data-badge); position: absolute; top: -6px; right: -8px;
  background: var(--accent); color: white; font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.btn-nav {
  padding: 8px 18px; border-radius: 6px; font-size: 14px;
  font-weight: 600; transition: all .2s; cursor: pointer; border: none;
}
.btn-outline { border: 1px solid var(--border); color: var(--text-muted); background: transparent; }
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #e0324f; color: white; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ---- FLASH ---- */
.flash {
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  text-align: center;
}
.flash-success { background: rgba(0,212,170,.15); color: var(--accent2); border-bottom: 1px solid rgba(0,212,170,.3); }
.flash-error   { background: rgba(255,60,95,.15);  color: var(--accent);  border-bottom: 1px solid rgba(255,60,95,.3);  }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 15px; cursor: pointer; transition: all .2s; border: none;
  font-family: var(--font-body);
}
.btn-red   { background: var(--accent);  color: white; }
.btn-red:hover   { background: #e0324f; color: white; }
.btn-green { background: var(--accent2); color: #000; }
.btn-green:hover { background: #00b892; color: #000; }
.btn-purple { background: var(--accent3); color: white; }
.btn-purple:hover { opacity:.85; color: white; }
.btn-ghost { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-danger { background: #c0392b; color: white; }
.btn-danger:hover { background: #a93226; color: white; }

/* ---- HERO ---- */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,92,252,.15) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; overflow: hidden; pointer-events: none;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--accent); }
.hero h1 .hl2 { color: var(--accent2); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display); font-size: 48px; color: var(--accent);
  line-height: 1;
}
.hero-stat .label { font-size: 13px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ---- SECTION ---- */
.section { padding: 64px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 1px;
}
.section-header h2 .accent { color: var(--accent); }

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.profile-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent3);
  box-shadow: 0 12px 40px rgba(124,92,252,.2);
}
.profile-card.featured { border-color: var(--gold); }
.profile-card.featured::before {
  content: '★ FEATURED';
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 4px;
}

.card-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--bg3);
}
.card-photo-placeholder {
  width: 100%; aspect-ratio: 1/1; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: var(--border);
}

.card-body { padding: 20px; }
.card-name { font-weight: 700; font-size: 18px; margin-bottom: 4px; color: var(--text); }
.card-tag  { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.card-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.cat-badge {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 2px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px;
}
.cat-badge.red    { border-color: var(--accent);  color: var(--accent);  }
.cat-badge.green  { border-color: var(--accent2); color: var(--accent2); }
.cat-badge.purple { border-color: var(--accent3); color: var(--accent3); }

.card-stars { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.card-location { font-size: 12px; color: var(--text-muted); }

.card-audio {
  margin: 14px 0;
}
.card-audio audio { width: 100%; height: 36px; }

/* ---- CATEGORY PILLS ---- */
.cat-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.cat-pill {
  padding: 10px 20px; border-radius: 30px;
  border: 1px solid var(--border); background: var(--bg2);
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: all .2s; cursor: pointer;
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--accent); color: var(--accent);
  background: rgba(255,60,95,.08);
}

/* ---- PROFILE PAGE ---- */
.profile-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.profile-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  align-items: start;
}
.profile-photo-wrap {
  position: relative;
}
.profile-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  object-fit: cover; border: 3px solid var(--border);
}
.profile-photo-placeholder {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: var(--bg3); border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; color: var(--border);
}
.available-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--accent2); color: #000;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}

.profile-info .profile-name {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  line-height: 1; margin-bottom: 8px;
}
.profile-tagline { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.profile-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; font-size: 14px; color: var(--text-muted); }
.profile-meta span { display: flex; align-items: center; gap: 6px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.profile-body {
  max-width: 1100px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1fr 320px; gap: 48px;
}
.profile-main {}
.profile-sidebar {}

.profile-section { margin-bottom: 48px; }
.profile-section h3 {
  font-family: var(--font-display); font-size: 26px;
  margin-bottom: 20px; color: var(--accent2);
  border-bottom: 1px solid var(--border); padding-bottom: 12px;
}
.profile-bio { font-size: 16px; line-height: 1.8; color: var(--text-muted); white-space: pre-wrap; }

/* Credits */
.credits-list { list-style: none; }
.credit-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.credit-year {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--accent); min-width: 40px;
}
.credit-info .credit-title { font-weight: 600; }
.credit-info .credit-artist { font-size: 13px; color: var(--text-muted); }

/* Gear */
.gear-list { list-style: none; }
.gear-group { margin-bottom: 20px; }
.gear-group h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent3); margin-bottom: 8px; }
.gear-item {
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 14px; color: var(--text-muted);
}
.gear-item:last-child { border: none; }

/* Reviews */
.review-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-name { font-weight: 600; }
.review-date   { font-size: 12px; color: var(--text-muted); }
.review-rating { color: var(--gold); font-size: 16px; }
.review-title  { font-weight: 600; margin-bottom: 8px; }
.review-body   { color: var(--text-muted); font-size: 15px; }

.rating-avg {
  font-family: var(--font-display); font-size: 52px; color: var(--gold); line-height: 1;
}

/* Sidebar widgets */
.sidebar-widget {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 16px;
}

/* Audio player */
.audio-player-wrap {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  margin-bottom: 16px;
}
.audio-player-title { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.audio-player-wrap audio { width: 100%; }

/* ---- FORMS ---- */
.form-page {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.form-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  width: 100%; max-width: 480px;
}
.form-box h2 { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; }
.form-box .subtitle { color: var(--text-muted); margin-bottom: 32px; }

.form-wide { max-width: 800px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--accent2); }
.form-control::placeholder { color: var(--text-muted); opacity: .6; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.form-error { color: var(--accent); font-size: 13px; margin-top: 6px; }

/* Checkboxes */
.checkbox-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; }
.checkbox-item input[type=checkbox] { accent-color: var(--accent2); width: 16px; height: 16px; }
.checkbox-item label { font-size: 14px; cursor: pointer; }

/* Repeater */
.repeater-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 12px;
  position: relative;
}
.repeater-remove {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; color: var(--accent);
  cursor: pointer; font-size: 18px; line-height: 1;
}
.btn-add {
  border: 1px dashed var(--border); background: transparent;
  color: var(--text-muted); padding: 10px 20px; border-radius: var(--radius);
  cursor: pointer; font-size: 14px; transition: all .2s; width: 100%;
  font-family: var(--font-body);
}
.btn-add:hover { border-color: var(--accent2); color: var(--accent2); }

/* ---- MESSAGES ---- */
.messages-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0; min-height: 600px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.messages-sidebar {
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.messages-sidebar-header {
  padding: 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.msg-thread {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.msg-thread:hover { background: var(--bg3); }
.msg-thread.active { background: var(--bg3); border-left: 3px solid var(--accent2); }
.msg-thread.unread .thread-subject { font-weight: 700; color: var(--text); }
.thread-subject { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.thread-preview { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-time { font-size: 11px; color: var(--text-muted); }

.messages-main { padding: 32px; }
.message-bubble {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.message-bubble.sent { border-color: var(--accent3); }
.msg-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.msg-body { font-size: 15px; line-height: 1.7; }

/* ---- DASHBOARD ---- */
.dashboard {
  max-width: 1100px; margin: 0 auto; padding: 48px 24px;
}
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.dashboard-header h1 { font-family: var(--font-display); font-size: 36px; }

.dash-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.dash-stat {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  text-align: center;
}
.dash-stat .num { font-family: var(--font-display); font-size: 42px; color: var(--accent2); }
.dash-stat .label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* ---- ADMIN ---- */
.admin-layout {
  display: grid; grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 32px 0;
}
.admin-logo { padding: 0 24px 32px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--bg3); color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 21px;
}
.admin-main { padding: 40px; }
.admin-title {
  font-family: var(--font-display); font-size: 36px;
  margin-bottom: 32px;
}

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--bg2); padding: 12px 16px;
  text-align: left; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.data-table tr:hover td { background: var(--bg2); }
.data-table .actions { display: flex; gap: 8px; }

.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.admin-stat {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.admin-stat .num { font-family: var(--font-display); font-size: 40px; }
.admin-stat .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.admin-stat.red .num { color: var(--accent); }
.admin-stat.green .num { color: var(--accent2); }
.admin-stat.purple .num { color: var(--accent3); }
.admin-stat.gold .num { color: var(--gold); }

/* ---- SEARCH BAR ---- */
.search-bar-wrap { max-width: 640px; margin: 0 auto 48px; position: relative; }
.search-bar {
  width: 100%; padding: 16px 20px 16px 52px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-size: 16px;
  font-family: var(--font-body);
}
.search-bar:focus { outline: none; border-color: var(--accent2); }
.search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}

/* ---- PAGINATION ---- */
.pagination {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 14px; transition: all .2s;
}
.page-btn:hover, .page-btn.active {
  border-color: var(--accent); color: var(--accent);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  margin-top: 80px; padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr; gap: 64px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: 13px;
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); padding: 24px;
  overflow-y: auto; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 0; color: var(--text);
  font-size: 18px; border-bottom: 1px solid var(--border);
}
.mobile-nav hr { border-color: var(--border); margin: 12px 0; }
.mobile-close {
  align-self: flex-end; background: none; border: none;
  color: var(--text); font-size: 28px; cursor: pointer; margin-bottom: 16px;
}

/* ---- STAR RATING INPUT ---- */
.star-rating { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 32px; color: var(--border); cursor: pointer;
  transition: color .1s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}

/* ---- UTILS ---- */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.tag {
  display: inline-block; padding: 2px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.tag-green  { background: rgba(0,212,170,.15); color: var(--accent2); }
.tag-red    { background: rgba(255,60,95,.15);  color: var(--accent);  }
.tag-purple { background: rgba(124,92,252,.15); color: var(--accent3); }
.tag-gold   { background: rgba(245,200,66,.15); color: var(--gold);    }

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

.empty-state {
  text-align: center; padding: 64px 24px;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 64px; margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; color: var(--text); margin-bottom: 8px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 48px; }
  .profile-hero-inner { grid-template-columns: 1fr; }
  .profile-hero-inner .profile-photo-wrap { max-width: 260px; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-sidebar { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .messages-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .nav-right .btn-nav:first-child { display: none; }
}

@media (max-width: 400px) {
  .cards-grid { grid-template-columns: 1fr; }
}
