body.dark-bg {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151515 0, #050507 40%, #000 100%);
  color: #f5f5f5;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.glow-title {
  font-family: "Orbitron", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffb36a;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 123, 24, 0.9);
}

.site-header {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
}

.site-header .tagline {
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

/* Artist cards */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.artist-card {
  display: block;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, #181818 0, #050507 40%, #000 100%);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(0,0,0,0.9);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255,123,24,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 28px rgba(255, 123, 24, 0.9);
}

.artist-card:hover::before {
  opacity: 1;
}

.artist-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.artist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.artist-card:hover .artist-thumb img {
  transform: scale(1.08);
}

.artist-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.artist-card-body h2 {
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}

.artist-tagline {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 0.35rem;
}

.artist-track {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffb36a;
}

/* Dashboard styles */
.dash-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-primary, .btn-ghost, .btn-small {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: radial-gradient(circle at 30% -10%, rgba(255,255,255,0.12), rgba(255,123,24,0.7));
  color: #fff;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-ghost {
  background: rgba(0,0,0,0.6);
}

.btn-small {
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.dash-card {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top, #181818 0, #050507 40%, #000 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.9);
}

.dash-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb36a;
}

.dash-card label {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  color: #a0a0a0;
}

.dash-card input,
.dash-card textarea,
.dash-card select {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.7);
  color: #f5f5f5;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.dash-table th,
.dash-table td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0.4rem;
}

.status-unpaid {
  color: #ff7b18;
}

.status-paid {
  color: #4ce37b;
}

/* subtle pulse */
.glow-title {
  animation: softPulse 2.5s ease-in-out infinite;
}
@keyframes softPulse {
  0%,100% { text-shadow: 0 0 10px rgba(255,123,24,0.7); }
  50% { text-shadow: 0 0 20px rgba(255,123,24,1); }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
  --orange: #ff7b18;
  --orange-soft: #ffb36a;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --bg-dark: #050507;
}

/* RESET / GLOBAL */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body.dark-bg {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151515 0, #050507 40%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
}

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

.page-bg::before,
.page-bg::after {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 123, 24, 0.18), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(255, 123, 24, 0.14), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  animation: bgPulse 16s ease-in-out infinite alternate;
  z-index: -1;
}

.page-bg::after {
  filter: blur(20px);
  opacity: 0.25;
}

@keyframes bgPulse {
  0%   { transform: scale(1) translate3d(0,0,0); }
  50%  { transform: scale(1.04) translate3d(0,-10px,0); }
  100% { transform: scale(1.08) translate3d(0,10px,0); }
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* HEADER / NAV */
.site-header {
  position: relative;
  z-index: 20;
}

.site-header--sticky {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5,5,7,0.92), rgba(5,5,7,0.5), transparent);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.6rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,123,24,0.9));
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-brand-top {
  font-family: "Orbitron", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  color: var(--orange-soft);
}

.site-brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link--active {
  border-color: rgba(255,123,24,0.7);
  color: var(--orange-soft);
  background: rgba(0,0,0,0.75);
  box-shadow: 0 0 12px rgba(255,123,24,0.8);
}

.nav-link--outline {
  border-color: rgba(255,255,255,0.25);
}

.nav-link:hover {
  color: #fff;
  transform: translateY(-1px);
  background: rgba(0,0,0,0.7);
}



/* MOBILE NAV */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.65);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle:active {
  transform: translateY(1px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
  z-index: 25;
}

@media (max-width: 860px) {
  .site-header-inner {
    padding: 0.75rem 1rem 0.65rem;
  }

  .site-logo {
    width: 44px;
    height: 44px;
  }

  .site-brand-top {
    font-size: 0.65rem;
  }

  .site-brand-sub {
    font-size: 0.6rem;
  }

  /* No-JS fallback: allow nav to wrap */
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-link {
    padding: 0.45rem 0.75rem;
  }
}

@media (max-width: 860px) {
  html.js .nav-toggle {
    display: inline-flex;
  }

  html.js .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    padding: 1.1rem 1rem 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    background: radial-gradient(circle at top, #181818 0, #050507 55%, #000 100%);
    border-left: 1px solid rgba(255,255,255,0.12);
    box-shadow: -18px 0 40px rgba(0,0,0,0.85);
    transform: translateX(110%);
    transition: transform 0.25s ease;
    z-index: 30;
  }

  html.js .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    transform: none;
  }

  html.js .nav-link:hover {
    transform: none;
    box-shadow: 0 0 16px rgba(255,123,24,0.85);
  }

  html.js .nav-link--outline {
    border-color: rgba(255,255,255,0.22);
  }

  html.js body.nav-open .site-nav {
    transform: translateX(0);
  }

  html.js body.nav-open .nav-overlay {
    display: block;
  }

  html.js body.nav-open {
    overflow: hidden;
  }
}
/* BUTTON STYLES */
.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-outline,
.btn-ghost-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: radial-gradient(circle at 30% -10%, rgba(255,255,255,0.18), rgba(255,123,24,0.9));
  color: #050507;
  box-shadow: 0 0 18px rgba(255,123,24,0.9);
}

.btn-secondary {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-main);
}

.btn-tertiary {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.18);
  color: var(--orange-soft);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--orange-soft);
}

.btn-ghost-small {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.45rem 1.1rem;
}

.block-btn {
  width: 100%;
  justify-content: center;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover,
.btn-outline:hover,
.btn-ghost-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255,123,24,1);
}

/* HERO LANDING */
.hero-landing {
  padding: 3.5rem 0 2.5rem;
}

.hero-landing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
  margin-bottom: 0.4rem;
}

.hero-landing-text h1 {
  font-family: "Orbitron", system-ui;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.7rem;
}

.hero-landing-text h1 span {
  color: var(--orange-soft);
  text-shadow: 0 0 20px rgba(255,123,24,0.9);
}

.hero-copy {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 32rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta span i {
  color: var(--orange-soft);
  margin-right: 0.3rem;
}

/* Hero side mini-card */
.hero-landing-card {
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, #181818 0, #050507 60%, #000 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.9), 0 0 22px rgba(255,123,24,0.4);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,123,24,0.8);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.75);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,123,24,1);
  animation: liveDot 1.3s ease-in-out infinite;
}

.hero-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

@keyframes liveDot {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; }
}

.hero-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1rem;
  align-items: center;
}

.hero-card-image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  height: 160px;
  background-image: url('https://images.pexels.com/photos/164745/pexels-photo-164745.jpeg?auto=compress&cs=tinysrgb&w=800');
  background-size: cover;
  background-position: center;
}

.hero-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(5,5,10,0.9));
}

.hero-card-text {
  font-size: 0.85rem;
  color: var(--text-main);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.hero-card-sub {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ABOUT STRIP */
.about-strip {
  padding: 1.5rem 0 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-item {
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, #181818 0, #050507 45%, #000 100%);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-main);
}

.about-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--orange-soft);
}

/* ARTISTS SECTION */
.artists-section {
  padding-bottom: 3rem;
}

.artists-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
}

.section-heading {
  font-family: "Orbitron", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  color: var(--orange-soft);
  margin: 0 0 0.2rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0;
}

.empty-state {
  margin-top: 1.5rem;
  padding: 1.6rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px dashed rgba(255,255,255,0.18);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ARTIST GRID – SMALLER, CLEAN CARDS */
.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.artist-card {
  width: 220px;
  border-radius: 1.1rem;
  background: radial-gradient(circle at top, #181818 0, #050507 40%, #000 100%);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(0,0,0,0.9);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255,123,24,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 26px rgba(255, 123, 24, 0.9);
}

.artist-card:hover::before {
  opacity: 1;
}

.artist-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.artist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.artist-card:hover .artist-thumb img {
  transform: scale(1.08);
}

/* Featured on App badge */
.badge-featured-app {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.8);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-soft);
  border: 1px solid rgba(255,123,24,0.8);
  animation: tinyShake 3.2s ease-in-out infinite;
}

@keyframes tinyShake {
  0%, 94%, 100% { transform: translate(0,0); }
  96% { transform: translate(1px,-1px); }
  98% { transform: translate(-1px,1px); }
}

.artist-card-body {
  padding: 0.7rem 0.9rem 0.9rem;
}

.artist-card-body h3 {
  margin: 0;
  font-size: 0.9rem;
}

.artist-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.artist-track {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-soft);
  margin-top: 0.5rem;
}

/* PACKAGES PAGE */
.packages-hero {
  padding: 3.2rem 0 1.8rem;
}

.packages-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: space-between;
  align-items: flex-start;
}

.packages-hero-inner h1 {
  font-family: "Orbitron", system-ui;
  font-size: clamp(2rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.7rem;
}

.packages-hero-tag {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.packages-hero-tag span i {
  color: var(--orange-soft);
  margin-right: 0.3rem;
}

.packages-section {
  padding-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.package-card {
  position: relative;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, #181818 0, #050507 40%, #000 100%);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 14px 38px rgba(0,0,0,0.9);
  font-size: 0.86rem;
}

.package-card h3 {
  margin: 0;
  font-size: 1rem;
}

.package-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.package-price {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.package-price .currency {
  font-size: 1rem;
  opacity: 0.9;
}

.package-price .per {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.1rem;
  font-size: 0.8rem;
}

.package-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.package-list .included i {
  color: #4ce37b;
}

.package-list .excluded {
  opacity: 0.55;
}

.package-list .excluded i {
  color: #ff4b4b;
}

.package-featured {
  border-color: rgba(255,123,24,0.9);
  box-shadow: 0 0 18px rgba(255,123,24,0.9);
  transform: translateY(-2px);
}

.package-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255,123,24,0.9);
  color: #000;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
}

.addons {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.addons ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.addons li {
  margin-bottom: 0.25rem;
}

/* DASHBOARD SHARED (from earlier) */
.dash-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.dash-card {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top, #181818 0, #050507 40%, #000 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.9);
  margin-bottom: 1rem;
}

.dash-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.dash-card label {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  color: var(--text-muted);
}

.dash-card input,
.dash-card textarea,
.dash-card select {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.7);
  color: #f5f5f5;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.dash-table th,
.dash-table td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0.4rem;
}

.btn-small {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.status-unpaid {
  color: #ff7b18;
}

.status-paid {
  color: #4ce37b;
}

/* FOOTER */
.site-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.8rem 1rem 2.3rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-landing-inner {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .packages-hero-inner {
    flex-direction: column;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .artist-card {
    width: calc(50% - 0.6rem);
  }
}

@media (max-width: 600px) {
  .artist-card {
    width: 100%;
  }
}

/* AUTH PAGES (login / register) */
.auth-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.2rem 3rem;
}

.auth-card {
  width: 100%;
  max-width: 430px;
  border-radius: 1.6rem;
  background: radial-gradient(circle at top, #181818 0, #050507 55%, #000 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.95), 0 0 30px rgba(255,123,24,0.65);
  padding: 2.2rem 2.1rem 1.9rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(255,123,24,0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255,123,24,0.12), transparent 55%);
  opacity: 0.6;
  mix-blend-mode: screen;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.auth-logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,123,24,1));
}

.auth-title {
  margin: 0.2rem 0 0.2rem;
  font-family: "Orbitron", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--orange-soft);
}

.auth-subtitle {
  margin: 0 0 1.3rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.auth-form {
  margin-top: 0.2rem;
  text-align: left;
}

.auth-field {
  margin-bottom: 0.9rem;
}

.auth-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.7);
  padding: 0.45rem 0.7rem;
}

.auth-input-wrap i {
  font-size: 0.8rem;
  color: var(--orange-soft);
}

.auth-input-wrap input {
  border: none;
  outline: none;
  background: transparent;
  color: #f5f5f5;
  width: 100%;
  font-size: 0.86rem;
}

.auth-input-wrap input::placeholder {
  color: rgba(255,255,255,0.35);
}

.auth-actions {
  margin-top: 1rem;
}

.auth-btn-main {
  width: 100%;
  justify-content: center;
}

.auth-btn-secondary {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.auth-footer-links {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.auth-footer-links p {
  margin: 0.4rem 0 0;
}

.auth-footer-links a {
  color: var(--orange-soft);
  text-decoration: none;
}

.auth-footer-links a:hover {
  text-decoration: underline;
}

.auth-errors,
.auth-success {
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.8rem;
  text-align: left;
}

.auth-errors {
  background: rgba(255, 75, 75, 0.12);
  border: 1px solid rgba(255, 75, 75, 0.6);
}

.auth-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.auth-success {
  background: rgba(76, 227, 123, 0.12);
  border: 1px solid rgba(76, 227, 123, 0.6);
}

/* Mobile tweak so card isn’t squashed */
@media (max-width: 600px) {
  .auth-card {
    padding: 1.9rem 1.5rem 1.7rem;
  }
}
