/* ============================================================
   BANDBUNK — DESIGN SYSTEM
   Black background. Neon purple. Raw rock energy.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:        #000000;
  --off-black:    #0a0a0a;
  --dark-1:       #111111;
  --dark-2:       #1a1a1a;
  --dark-3:       #242424;
  --dark-4:       #2e2e2e;

  --purple:       #9b1dfa;
  --purple-bright:#b44dff;
  --purple-glow:  #c97dff;
  --purple-dim:   #5a0a99;
  --purple-bg:    rgba(155, 29, 250, 0.08);
  --purple-border:rgba(155, 29, 250, 0.35);

  --white:        #f5f5f5;
  --grey-1:       #cccccc;
  --grey-2:       #999999;
  --grey-3:       #666666;
  --grey-4:       #444444;

  --green:        #00e676;
  --red:          #ff3d57;
  --amber:        #ffc107;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-purple: 0 0 20px rgba(155, 29, 250, 0.4);
  --shadow-purple-sm: 0 0 8px rgba(155, 29, 250, 0.3);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.6);

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--purple-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; font-family: var(--font-condensed); font-weight: 700; letter-spacing: 0.08em; }
h6 { font-size: 1rem; font-family: var(--font-condensed); font-weight: 600; }

p { color: var(--grey-1); line-height: 1.7; }
p + p { margin-top: 0.75rem; }

a {
  color: var(--purple-glow);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--purple-bright); }

strong { color: var(--white); font-weight: 600; }
small { font-size: 0.8rem; color: var(--grey-2); }

.label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.text-purple { color: var(--purple-bright); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--grey-2); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1440px; }

.section {
  padding: 5rem 0;
}
.section--sm { padding: 3rem 0; }
.section--lg { padding: 8rem 0; }

/* Grid helpers */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 1rem; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 2rem; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--purple-border);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__logo span { color: var(--purple-bright); }
.navbar__logo:hover { color: var(--white); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar__nav a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-1);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--purple-bright);
  background: var(--purple-bg);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark-1);
    border-bottom: 1px solid var(--purple-border);
    padding: 1rem;
    gap: 0.5rem;
  }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-purple-sm);
}
.btn--primary:hover {
  background: var(--purple-bright);
  box-shadow: var(--shadow-purple);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--purple-glow);
  border: 1px solid var(--purple-border);
}
.btn--outline:hover {
  background: var(--purple-bg);
  border-color: var(--purple);
  color: var(--purple-bright);
}

.btn--ghost {
  background: transparent;
  color: var(--grey-1);
  border: 1px solid var(--dark-4);
}
.btn--ghost:hover {
  background: var(--dark-2);
  color: var(--white);
  border-color: var(--grey-3);
}

.btn--danger {
  background: var(--red);
  color: var(--white);
}
.btn--danger:hover {
  background: #cc2233;
  transform: translateY(-1px);
}

.btn--success {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn--success:hover {
  background: rgba(0, 230, 118, 0.1);
}

.btn--sm {
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
}
.btn--lg {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}
.btn--block { width: 100%; justify-content: center; }

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--dark-1);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--purple-border);
  box-shadow: var(--shadow-card);
}

.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(155,29,250,0.2);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card__body { padding: 1.25rem; }
.card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LISTING CARD ────────────────────────────────────────── */
.listing-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.listing-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.listing-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .listing-card__image-wrap img {
  transform: scale(1.04);
}
.listing-card__type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--purple-border);
  color: var(--purple-glow);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}
.listing-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--dark-2);
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="tel"],
select,
textarea {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,29,250,0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--grey-4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
}
.form-check label {
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--grey-1);
  cursor: pointer;
}

.form-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.2rem;
}

.form-help {
  font-size: 0.8rem;
  color: var(--grey-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── STARS ───────────────────────────────────────────────── */
.stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.star {
  color: var(--grey-4);
  font-size: 1rem;
}
.star.filled { color: var(--purple-bright); }
.star.half   { color: var(--purple-dim); }

.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating-input input { display: none; }
.star-rating-input label {
  font-size: 1.6rem;
  color: var(--dark-4);
  cursor: pointer;
  transition: color var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: var(--purple-bright);
}

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}
.badge--purple  { background: var(--purple-bg); color: var(--purple-glow); border: 1px solid var(--purple-border); }
.badge--green   { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.badge--red     { background: rgba(255,61,87,0.1); color: var(--red); border: 1px solid rgba(255,61,87,0.3); }
.badge--amber   { background: rgba(255,193,7,0.1); color: var(--amber); border: 1px solid rgba(255,193,7,0.3); }
.badge--grey    { background: var(--dark-3); color: var(--grey-2); border: 1px solid var(--dark-4); }

/* ── MESSAGES / ALERTS ───────────────────────────────────── */
.messages {
  position: fixed;
  top: 72px;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  animation: slideIn 0.3s ease;
}
.alert--success { background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.35); color: var(--green); }
.alert--error   { background: rgba(255,61,87,0.12); border: 1px solid rgba(255,61,87,0.35); color: var(--red); }
.alert--info    { background: var(--purple-bg); border: 1px solid var(--purple-border); color: var(--purple-glow); }
.alert--warning { background: rgba(255,193,7,0.1); border: 1px solid rgba(255,193,7,0.3); color: var(--amber); }
.alert__close   { margin-left: auto; cursor: pointer; opacity: 0.6; font-size: 1.1rem; }
.alert__close:hover { opacity: 1; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(155,29,250,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(90,10,153,0.12) 0%, transparent 60%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--purple);
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  color: var(--purple-bright);
  text-shadow: 0 0 40px rgba(155,29,250,0.5);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--grey-1);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header {
  margin-bottom: 3rem;
}
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: 0.5rem; display: block; }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--dark-3);
  margin: 2rem 0;
}
.divider--purple { border-top-color: var(--purple-border); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--dark-3);
  margin-bottom: 3rem;
}

/* ── SIDEBAR LAYOUT ──────────────────────────────────────── */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}

/* ── STICKY SIDEBAR ──────────────────────────────────────── */
.sidebar-sticky {
  position: sticky;
  top: 80px;
}

/* ── BOOKING WIDGET ──────────────────────────────────────── */
.booking-widget {
  background: var(--dark-1);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 0 40px rgba(155,29,250,0.12);
}
.booking-widget__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.booking-widget__price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey-2);
}

/* ── PROFILE AVATAR ──────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-border);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--purple-bright);
  flex-shrink: 0;
}
.avatar--sm  { width: 36px; height: 36px; font-size: 1rem; }
.avatar--md  { width: 56px; height: 56px; font-size: 1.4rem; }
.avatar--lg  { width: 96px; height: 96px; font-size: 2rem; }
.avatar--xl  { width: 140px; height: 140px; font-size: 2.8rem; }

/* ── REVIEW CARD ─────────────────────────────────────────── */
.review-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-card__meta {
  font-size: 0.8rem;
  color: var(--grey-3);
  margin-top: 0.25rem;
}

/* ── AMENITY TAGS ────────────────────────────────────────── */
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--grey-1);
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
}
.amenity--active {
  color: var(--purple-glow);
  border-color: var(--purple-border);
  background: var(--purple-bg);
}

/* ── MAP ─────────────────────────────────────────────────── */
#map {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-4);
  background: var(--dark-2);
  overflow: hidden;
}

/* ── DASHBOARD ───────────────────────────────────────────── */
.dashboard-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--dark-3);
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0;
}
.dashboard-tab {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.dashboard-tab:hover { color: var(--white); }
.dashboard-tab.active {
  color: var(--purple-bright);
  border-bottom-color: var(--purple);
}

.stat-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--purple-bright);
  display: block;
}
.stat-card__label {
  font-size: 0.82rem;
  color: var(--grey-2);
  font-family: var(--font-condensed);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SEARCH BAR ──────────────────────────────────────────── */
.search-bar {
  display: flex;
  gap: 0;
  background: var(--dark-1);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-purple-sm);
}
.search-bar input {
  border: none;
  background: transparent;
  border-radius: 0;
  flex: 1;
  padding: 0.85rem 1.25rem;
}
.search-bar input:focus {
  box-shadow: none;
  border: none;
}
.search-bar select {
  border: none;
  border-left: 1px solid var(--dark-4);
  background: var(--dark-2);
  border-radius: 0;
  min-width: 160px;
}
.search-bar select:focus { box-shadow: none; border-color: var(--dark-4); }
.search-bar .btn {
  border-radius: 0;
  padding: 0.85rem 1.5rem;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--grey-3);
}
.empty-state__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.empty-state h3 {
  font-size: 1.5rem;
  color: var(--grey-2);
  margin-bottom: 0.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--dark-3);
  padding: 3rem 0 2rem;
  margin-top: 6rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer__logo span { color: var(--purple-bright); }
.footer__tagline {
  font-size: 0.85rem;
  color: var(--grey-3);
  margin-bottom: 0;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--grey-2);
}
.footer__links a:hover { color: var(--purple-bright); }
.footer__bottom {
  border-top: 1px solid var(--dark-3);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey-3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }

.p-0   { padding: 0; }
.p-3   { padding: 1.5rem; }
.p-4   { padding: 2rem; }

.text-center  { text-align: center; }
.text-right   { text-align: right; }

.w-full       { width: 100%; }
.hidden       { display: none; }

.rounded      { border-radius: var(--radius-md); }
.rounded-lg   { border-radius: var(--radius-lg); }

.border-purple {
  border: 1px solid var(--purple-border);
}

.bg-dark-1 { background: var(--dark-1); }
.bg-dark-2 { background: var(--dark-2); }

.glow-purple {
  text-shadow: 0 0 20px rgba(155,29,250,0.7);
  color: var(--purple-bright);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(155,29,250,0.4); }
  50%       { box-shadow: 0 0 24px rgba(155,29,250,0.7); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }

.pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--dark-2) 25%, var(--dark-3) 50%, var(--dark-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
