/* ── IndiMu Web Platform — GigSalad-style CSS ── */
:root {
  --primary: #6C63FF;
  --primary-dark: #4D45E0;
  --primary-nav: #1A1040;
  --primary-light: #f3f0ff;
  --accent: #00D9FF;
  --venue-green: #4CAF50;
  --musician-pink: #FF6B9D;
  --text-primary: #1A1A1A;
  --text-secondary: #757575;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --border: #E0E0E0;
  --error: #F44336;
  --success: #4CAF50;
  --warning: #FF9800;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif; background: var(--bg); color: var(--text-primary); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; }
input, select, textarea { font-family: inherit; }

/* ── Mobile App Banner — compact purple theme ── */
.app-banner {
  background: linear-gradient(90deg, #4D45E0 0%, #6C63FF 100%);
  color: white;
  padding: 8px 12px;
  display: none;
  align-items: center;
  gap: 8px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  box-shadow: 0 2px 12px rgba(77,69,224,0.4);
}
.app-banner-icon { width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.app-banner-text { flex: 1; min-width: 0; }
.app-banner-text strong { font-size: 13px; font-weight: 700; }
.app-banner-text span { display: none; }
.app-banner-cta { display: flex; gap: 5px; flex-shrink: 0; }
.app-banner-btn {
  background: white;
  color: var(--primary);
  padding: 5px 11px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.app-banner-btn:hover { background: #f0eeff; text-decoration: none; color: var(--primary-dark); }
.app-banner-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 18px; padding: 0 2px; line-height: 1; flex-shrink: 0; }
.app-banner-close:hover { color: white; }

/* ── Navbar ── */
.navbar {
  background: var(--primary-nav);
  color: white;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: white;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.navbar-logo:hover { text-decoration: none; color: white; }
.navbar-logo img { height: 32px; width: 32px; border-radius: 8px; }
.navbar-logo span { color: var(--accent); }
.navbar-links { display: flex; gap: 2px; flex: 1; }
.navbar-link {
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
}
.navbar-link:hover, .navbar-link.active { color: white; background: rgba(255,255,255,0.12); text-decoration: none; }
.navbar-auth { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav-signin {
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  font-size: 14px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-nav-signin:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-nav-getstarted {
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: background 0.2s;
}
.btn-nav-getstarted:hover { background: var(--primary-dark); }
.navbar-user-menu {
  position: relative;
}
.navbar-avatar-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 4px 12px 4px 4px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.navbar-avatar-btn:hover { background: rgba(255,255,255,0.18); }
.navbar-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: white;
  overflow: hidden; flex-shrink: 0;
}
.navbar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dropdown-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: white; border-radius: 12px; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); min-width: 200px; z-index: 1000;
  overflow: hidden; display: none;
}
.dropdown-menu.open { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 14px; color: var(--text-primary);
  cursor: pointer; transition: background 0.15s;
  border: none; background: none; width: 100%; text-align: left;
  text-decoration: none;
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.dropdown-item.danger { color: var(--error); }
.dropdown-item.danger:hover { background: #fee2e2; }
.navbar-hamburger {
  display: none; background: none; border: none; color: white; font-size: 24px; margin-left: auto;
}
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--primary-nav); z-index: 190;
  padding: 16px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
/* When banner is shown, mobile menu starts below it */
body.has-banner .mobile-menu { top: calc(48px + 64px); }
.mobile-menu-link {
  color: rgba(255,255,255,0.85); padding: 14px 16px; border-radius: 8px;
  font-size: 16px; font-weight: 500; cursor: pointer;
  border: none; background: none; text-align: left;
  transition: background 0.2s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── Dashboard nav button ── */
.btn-nav-dashboard {
  color: white;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 4px;
}
.btn-nav-dashboard:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }

/* ── Navbar scrolled state ── */
.navbar-scrolled {
  background: rgba(13, 10, 46, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Scroll-reveal: hidden by default, becomes visible when JS adds .anim-visible */
.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-fade-up.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.anim-fade-up:nth-child(1) { transition-delay: 0ms; }
.anim-fade-up:nth-child(2) { transition-delay: 80ms; }
.anim-fade-up:nth-child(3) { transition-delay: 160ms; }
.anim-fade-up:nth-child(4) { transition-delay: 240ms; }
.anim-fade-up:nth-child(5) { transition-delay: 320ms; }
.anim-fade-up:nth-child(6) { transition-delay: 400ms; }

/* Hero animated gradient background */
.hero {
  background: linear-gradient(-45deg, #0d0a2e, #1a1040, #2d1b69, #1a0a5e);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

/* Page transition */
.page.active { animation: fadeIn 0.25s ease; }

/* Skeleton loaders */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
.skeleton-card { height: 280px; border-radius: 14px; }
.skeleton-line { height: 14px; margin-bottom: 8px; }
.skeleton-line.short { width: 60%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; }
.btn-secondary { background: white; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary-light); color: var(--primary); }
.btn-venue { background: var(--venue-green); color: white; }
.btn-venue:hover { background: #388E3C; color: white; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--bg); color: var(--text-primary); }
.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { background: #c62828; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 6px; }
.btn-xs { padding: 4px 10px; font-size: 12px; border-radius: 5px; }
.btn-full { width: 100%; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: 8px; }
.btn-loading { position: relative; pointer-events: none; }
.btn-loading::after {
  content: '';
  position: absolute; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: white;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}

/* ── Cards ── */
.card {
  background: var(--surface); border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); cursor: pointer; }
.card-body { padding: 20px; }
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.card-footer { padding: 16px 20px; border-top: 1px solid var(--border); background: var(--bg); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text-primary); background: white;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,99,255,0.12); }
.form-control.is-error { border-color: var(--error); }
textarea.form-control { min-height: 96px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.form-error-text { font-size: 12px; color: var(--error); margin-top: 4px; }
.form-section { margin-bottom: 28px; }
.form-section-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }

/* ── Genre / tag checkboxes ── */
.tag-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-checkbox-input { display: none; }
.tag-checkbox-label {
  padding: 6px 14px; border-radius: 20px; border: 1.5px solid var(--border);
  font-size: 13px; cursor: pointer; transition: all 0.2s; user-select: none;
}
.tag-checkbox-input:checked + .tag-checkbox-label { background: var(--primary); color: white; border-color: var(--primary); }

/* ── Chips ── */
.chip { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; gap: 4px; }
.chip-primary { background: var(--primary-light); color: var(--primary); }
.chip-green { background: #dcfce7; color: #15803d; }
.chip-blue { background: #dbeafe; color: #1d4ed8; }
.chip-pink { background: #fce7f3; color: #be185d; }
.chip-gray { background: #f3f4f6; color: #6b7280; }
.chip-orange { background: #fff7ed; color: #c2410c; }
.chip-teal { background: #ccfbf1; color: #0f766e; }

/* ── Stars ── */
.stars { color: #FBBF24; letter-spacing: 1px; font-size: 14px; }
.stars-count { font-size: 12px; color: var(--text-secondary); margin-left: 4px; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-header { margin-bottom: 40px; }
.section-title { font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-musicians { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* ── Page router ── */
.page { display: none; }
.page.active { display: block; }

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, #0d0a2e 0%, #1a1040 40%, #2d1b69 100%);
  color: white; padding: 80px 0 90px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,217,255,0.15); border: 1px solid rgba(0,217,255,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: 54px; font-weight: 900; line-height: 1.08; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; opacity: 0.8; margin-bottom: 40px; line-height: 1.6; max-width: 540px; }

/* Hero search bar */
.hero-search-bar {
  background: white; border-radius: 14px; padding: 6px 6px 6px 0;
  display: flex; align-items: center; gap: 0;
  max-width: 680px; box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-search-group { flex: 1; padding: 10px 16px; border-right: 1px solid var(--border); }
.hero-search-group:last-of-type { border-right: none; }
.hero-search-group label { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); margin-bottom: 3px; }
.hero-search-group input, .hero-search-group select {
  width: 100%; border: none; outline: none; font-size: 15px; font-weight: 500;
  color: var(--text-primary); background: transparent;
}
.hero-search-group select { appearance: none; cursor: pointer; }
.hero-search-btn {
  background: var(--primary); color: white;
  padding: 12px 22px; border-radius: 10px; margin: 4px;
  border: none; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.hero-search-btn:hover { background: var(--primary-dark); }
.hero-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 20px; font-size: 13px; color: rgba(255,255,255,0.85);
}

/* ── Browse page ── */
.browse-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 32px 24px; align-items: start; }
.browse-filters { position: sticky; top: 88px; }
.browse-filter-card { background: white; border-radius: 12px; border: 1px solid var(--border); padding: 20px; margin-bottom: 16px; }
.browse-filter-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 12px; }
.browse-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.browse-results-count { font-size: 14px; color: var(--text-secondary); }
.browse-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.browse-sort select { padding: 6px 10px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 13px; background: white; }
.search-input-wrap { position: relative; margin-bottom: 12px; }
.search-input-wrap input { padding-left: 36px; }
.search-input-wrap .ic-search { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--text-secondary); font-size: 16px; pointer-events: none; }

/* ── Musician Card ── */
.musician-card { background: white; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.musician-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); cursor: pointer; }
.musician-card-photo {
  height: 200px; background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; font-weight: 900; color: var(--primary); position: relative; overflow: hidden;
}
.musician-card-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.musician-card-body { padding: 16px; }
.musician-card-name { font-size: 17px; font-weight: 800; margin-bottom: 3px; }
.musician-card-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.musician-card-genres { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.musician-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); }
.musician-card-rate { font-size: 15px; font-weight: 700; color: var(--primary); }

/* ── Gig Cards ── */
.gig-list { display: flex; flex-direction: column; gap: 12px; }
.gig-card { background: white; border-radius: 12px; border: 1px solid var(--border); padding: 20px; display: flex; gap: 20px; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; cursor: pointer; }
.gig-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gig-date-box {
  min-width: 64px; text-align: center; background: var(--primary-light);
  border-radius: 10px; padding: 10px 8px; flex-shrink: 0;
  color: var(--primary);
}
.gig-date-box .day { font-size: 26px; font-weight: 900; line-height: 1; }
.gig-date-box .month { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.gig-date-box .year { font-size: 11px; opacity: 0.7; }
.gig-info { flex: 1; min-width: 0; }
.gig-title { font-size: 17px; font-weight: 800; margin-bottom: 3px; }
.gig-venue-name { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.gig-meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }
.gig-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-secondary); }
.gig-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.gig-pay { min-width: 100px; text-align: right; flex-shrink: 0; }
.gig-pay-amount { font-size: 18px; font-weight: 900; color: var(--venue-green); }
.gig-pay-type { font-size: 11px; color: var(--text-secondary); }
.gig-apply-btn { margin-top: 8px; }

/* ── Musician Profile ── */
.profile-hero {
  background: linear-gradient(145deg, #0d0a2e, #2d1b69);
  color: white; padding: 48px 0;
}
.profile-hero-inner { display: flex; gap: 28px; align-items: flex-start; }
.profile-avatar-xl {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 3px solid rgba(255,255,255,0.25);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 900; color: white;
}
.profile-avatar-xl img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 30px; font-weight: 900; margin-bottom: 4px; }
.profile-tagline { font-size: 15px; opacity: 0.8; margin-bottom: 14px; }
.profile-meta-row { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.profile-meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; opacity: 0.85; }
.profile-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.profile-tag { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; font-size: 12px; }
.profile-body { max-width: 1100px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
.profile-main { }
.profile-sidebar { }
.profile-section-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.profile-bio { font-size: 15px; line-height: 1.7; color: var(--text-primary); margin-bottom: 32px; white-space: pre-line; }
.demo-videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.demo-video { background: var(--primary-light); border-radius: 10px; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 40px; cursor: pointer; overflow: hidden; }
.demo-video iframe { width: 100%; height: 100%; }
.review-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.booking-card-sidebar {
  background: white; border-radius: 14px; border: 1px solid var(--border);
  padding: 24px; position: sticky; top: 88px;
}
.booking-card-price { font-size: 26px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.booking-card-price-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }

/* ── Dashboard ── */
.dashboard-shell { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.dashboard-sidebar { background: white; border-right: 1px solid var(--border); padding: 24px 0; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.dashboard-profile-mini { padding: 0 16px 20px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.dash-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; overflow: hidden;
}
.dash-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dash-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.dash-role { font-size: 12px; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
.dash-nav { list-style: none; }
.dash-nav-item button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  background: none; border: none; cursor: pointer; transition: all 0.15s; text-align: left;
}
.dash-nav-item button:hover { color: var(--primary); background: var(--primary-light); }
.dash-nav-item button.active { color: var(--primary); background: var(--primary-light); font-weight: 700; border-right: 3px solid var(--primary); }
.dash-nav-icon { font-size: 18px; width: 22px; text-align: center; }
.dashboard-content { padding: 28px; background: var(--bg); }
.dash-panel { display: none; }
.dash-panel.active { display: block; }
.dash-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: white; border-radius: 12px; border: 1px solid var(--border); padding: 18px 20px; }
.stat-value { font-size: 30px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-trend { font-size: 12px; color: var(--success); margin-top: 4px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); padding: 10px 14px; border-bottom: 2px solid var(--border); background: var(--bg); }
.data-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--primary-light); }
.status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-open, .status-pending { background: #fff7ed; color: #c2410c; }
.status-accepted, .status-confirmed, .status-completed, .status-filled { background: #dcfce7; color: #15803d; }
.status-rejected, .status-cancelled, .status-expired { background: #fee2e2; color: #991b1b; }
.status-withdrawn { background: #f3f4f6; color: #6b7280; }
.status-booked { background: #dbeafe; color: #1e40af; }

/* ── Post Gig Form ── */
.post-gig-hero {
  background: linear-gradient(145deg, #0d0a2e, #2d1b69);
  color: white; padding: 40px 0;
}
.post-gig-hero h1 { font-size: 30px; font-weight: 900; margin-bottom: 6px; }
.post-gig-hero p { font-size: 15px; opacity: 0.8; }
.post-gig-body { max-width: 780px; margin: 0 auto; padding: 32px 24px; }
.form-card { background: white; border-radius: 14px; border: 1px solid var(--border); padding: 28px; margin-bottom: 20px; }
.date-time-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ── Auth ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #0d0a2e 0%, #2d1b69 100%); padding: 20px;
}
.auth-card {
  background: white; border-radius: 18px; padding: 40px;
  width: 100%; max-width: 460px; box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo-text { font-size: 28px; font-weight: 900; color: var(--primary-nav); letter-spacing: -0.5px; }
.auth-logo-text span { color: var(--primary); }
.auth-title { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.auth-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 12px; color: var(--text-secondary); }
.auth-link-row { text-align: center; font-size: 14px; color: var(--text-secondary); margin-top: 20px; }
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.role-option {
  padding: 18px 14px; border: 2px solid var(--border); border-radius: 12px;
  cursor: pointer; text-align: center; transition: all 0.2s; position: relative;
}
.role-option:hover { border-color: var(--primary); background: var(--primary-light); }
.role-option.selected { border-color: var(--primary); background: var(--primary-light); }
.role-option.selected::after {
  content: '✓'; position: absolute; top: 8px; right: 10px;
  background: var(--primary); color: white; width: 18px; height: 18px;
  border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.role-icon { font-size: 28px; margin-bottom: 6px; }
.role-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.role-desc { font-size: 11px; color: var(--text-secondary); }

/* ── Messages / Chat ── */
.messages-layout { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 64px); }
.conv-list { border-right: 1px solid var(--border); overflow-y: auto; background: white; }
.conv-list-header { padding: 16px; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 800; }
.conv-item {
  padding: 14px 16px; display: flex; gap: 12px; align-items: center;
  cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s;
}
.conv-item:hover, .conv-item.active { background: var(--primary-light); }
.conv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; flex-shrink: 0; overflow: hidden;
}
.conv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.conv-info { flex: 1; min-width: 0; }
.conv-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.conv-preview { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-time { font-size: 11px; color: var(--text-secondary); flex-shrink: 0; }
.chat-area { display: flex; flex-direction: column; }
.chat-header { padding: 14px 20px; border-bottom: 1px solid var(--border); background: white; display: flex; align-items: center; gap: 12px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.chat-bubble { max-width: 68%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; word-break: break-word; }
.chat-bubble.mine { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-bubble.theirs { background: white; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-time { font-size: 11px; opacity: 0.6; margin-top: 3px; }
.chat-time.mine { text-align: right; }
.chat-input-bar { padding: 14px 20px; border-top: 1px solid var(--border); background: white; display: flex; gap: 10px; }
.chat-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 24px; font-size: 14px; outline: none; transition: border-color 0.2s; }
.chat-input:focus { border-color: var(--primary); }
.chat-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-secondary); gap: 12px; }

/* ── Profile Edit ── */
.profile-edit-layout { max-width: 900px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 200px 1fr; gap: 28px; }
.profile-edit-nav { }
.profile-edit-nav-link {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: 8px; font-size: 14px; color: var(--text-secondary);
  cursor: pointer; border: none; background: none; width: 100%; text-align: left;
  transition: all 0.15s; font-family: inherit;
}
.profile-edit-nav-link:hover, .profile-edit-nav-link.active { background: var(--primary-light); color: var(--primary); }
.photo-upload-zone {
  border: 2px dashed var(--border); border-radius: 14px; padding: 20px 24px;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 20px;
}
.photo-upload-zone:hover { border-color: var(--primary); background: var(--primary-light); }
.photo-upload-preview {
  width: 80px; height: 80px; border-radius: 50%; background: var(--primary-light);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: var(--primary);
  border: 2px solid var(--border);
}
.photo-upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-progress-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.upload-progress-fill { height: 100%; background: var(--primary); border-radius: 3px; transition: width 0.3s ease; }

/* Legacy compat */
.photo-upload-area {
  border: 2px dashed var(--border); border-radius: 12px; padding: 28px;
  text-align: center; cursor: pointer; transition: all 0.2s;
}
.photo-upload-area:hover { border-color: var(--primary); background: var(--primary-light); }
.photo-preview { width: 80px; height: 80px; border-radius: 50%; background: var(--primary-light); margin: 0 auto 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--primary); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ── Profile tabs (new shared style) ── */
.profile-tab-btn {
  padding: 8px 18px; border-radius: 24px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; cursor: pointer; background: white;
  color: var(--text-secondary); transition: all 0.2s; font-family: inherit;
}
.profile-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.profile-tab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ── Musician card photo overlay on hover ── */
.musician-card { position: relative; }
.musician-card-photo { position: relative; overflow: hidden; }
.musician-card-photo::after {
  content: 'View Profile';
  position: absolute; inset: 0;
  background: rgba(108, 99, 255, 0.85);
  color: white; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
}
.musician-card:hover .musician-card-photo::after { opacity: 1; }

/* ── Gig type color indicators ── */
.gig-date-box.type-wedding { background: #fce7f3; color: #be185d; }
.gig-date-box.type-corporate { background: #dbeafe; color: #1d4ed8; }
.gig-date-box.type-festival { background: #fef3c7; color: #92400e; }
.gig-date-box.type-bar { background: #d1fae5; color: #065f46; }

/* ── Stat card accent colors ── */
.stat-card-primary .stat-value { color: var(--primary); }
.stat-card-green .stat-value { color: var(--venue-green); }
.stat-card-teal .stat-value { color: #0891b2; }
.stat-card-pink .stat-value { color: var(--musician-pink); }
.stat-card-primary { border-top: 3px solid var(--primary); }
.stat-card-green { border-top: 3px solid var(--venue-green); }
.stat-card-teal { border-top: 3px solid #0891b2; }
.stat-card-pink { border-top: 3px solid var(--musician-pink); }

/* ── Better focus states (accessibility) ── */
.btn:focus-visible, .form-control:focus-visible, .tag-checkbox-label:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px;
}

/* ── Smooth image loading ── */
img { transition: opacity 0.3s ease; }
img[loading] { opacity: 0; }
img.loaded { opacity: 1; }

/* ── Section divider ── */
.section-divider { height: 1px; background: var(--border); margin: 0; }

/* ── How it Works ── */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-step { text-align: center; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(108,99,255,0.35);
}
.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Category pills (home) ── */
.category-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.category-pill {
  padding: 8px 18px; border-radius: 24px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; cursor: pointer;
  background: white; transition: all 0.2s; color: var(--text-secondary);
}
.category-pill:hover, .category-pill.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ── For Venue CTA Banner ── */
.venue-cta-banner {
  background: linear-gradient(135deg, var(--venue-green) 0%, #388E3C 100%);
  color: white; border-radius: 16px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.venue-cta-text h2 { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.venue-cta-text p { font-size: 15px; opacity: 0.9; max-width: 400px; }
.btn-venue-white { background: white; color: var(--venue-green); padding: 14px 28px; font-size: 15px; font-weight: 800; border-radius: 10px; border: none; cursor: pointer; white-space: nowrap; transition: box-shadow 0.2s; }
.btn-venue-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  background: var(--primary-nav); color: white;
  padding: 14px 18px; border-radius: 10px; font-size: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); max-width: 320px; pointer-events: all;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.3s ease;
}
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.info { background: #2563eb; }
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }

/* ── Loading ── */
.loading-box { display: flex; align-items: center; justify-content: center; padding: 60px; color: var(--text-secondary); gap: 12px; }
.spinner { width: 28px; height: 28px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-icon { font-size: 52px; margin-bottom: 14px; }
.empty-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.empty-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }

/* ── Gig Detail ── */
.gig-detail-hero { background: linear-gradient(145deg, #0d0a2e, #2d1b69); color: white; padding: 48px 0; }
.gig-detail-body { max-width: 1100px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
.gig-apply-card { background: white; border-radius: 14px; border: 1px solid var(--border); padding: 24px; position: sticky; top: 88px; }

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 800; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: 16px; padding: 32px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 20px; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 24px; color: var(--text-secondary); cursor: pointer; padding: 0 4px; }
.modal-close:hover { color: var(--text-primary); }

/* ── Trust / Stats bar below hero ── */
.stats-trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.stats-trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-stat { display: flex; align-items: center; gap: 8px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.trust-num { font-size: 18px; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ── Skeleton musician card grid ── */
.skeleton-musicians { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.skeleton-musician-card {
  background: white; border-radius: 14px; border: 1px solid var(--border); overflow: hidden;
}
.skeleton-musician-card .sk-photo { height: 200px; }
.skeleton-musician-card .sk-body { padding: 16px; }
.skeleton-musician-card .sk-line { height: 14px; border-radius: 6px; margin-bottom: 8px; }
.skeleton-musician-card .sk-line.wide { width: 70%; }
.skeleton-musician-card .sk-line.mid { width: 50%; }
.skeleton-musician-card .sk-line.short { width: 30%; }

/* ── Footer ── */
.footer { background: var(--primary-nav); color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { }
.footer-logo { font-size: 22px; font-weight: 900; color: white; margin-bottom: 10px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .browse-filters { position: static; }
  .profile-body { grid-template-columns: 1fr; }
  .gig-detail-body { grid-template-columns: 1fr; }
  .gig-apply-card { position: static; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .profile-edit-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .app-banner { display: flex; }
  .navbar { top: 48px; } /* banner is 48px tall */
  .navbar-links { display: none; }
  .navbar-hamburger { display: block; }
  .navbar-auth .btn-nav-getstarted { display: none; }
  .navbar-auth .btn-nav-dashboard { display: none; }
  .btn-nav-dashboard { font-size: 12px; padding: 6px 10px; }
  .hero { padding: 48px 0 60px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-search-bar { flex-direction: column; border-radius: 12px; }
  .hero-search-group { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-search-group:last-of-type { border-bottom: none; }
  .hero-search-btn { border-radius: 8px; margin: 4px 6px 6px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .venue-cta-banner { flex-direction: column; padding: 28px 24px; }
  .messages-layout { grid-template-columns: 1fr; }
  .conv-list { display: none; }
  .date-time-grid, .pay-grid { grid-template-columns: 1fr; }
  .profile-hero-inner { flex-direction: column; }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
}
