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

:root {
  --bg: #0a0a0b;
  --surface: #111114;
  --surface-2: #18181c;
  --surface-3: #232328;
  --text: #f5f5f7;
  --text-muted: #a1a1aa;
  --accent: #22d3ee;
  --accent-2: #0ea5e9;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.display {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: url('../images/logo-icon.png') center center / contain no-repeat;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background: url('../images/logo-wide.png') center center / contain no-repeat;
  opacity: 0.35;
  z-index: -1;
  animation: hero-breathe 18s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.18), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.08), transparent 50%);
  animation: hero-orb 15s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 11, 1) 0%, rgba(10, 10, 11, 1) 20%, transparent 60%, var(--bg) 100%);
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.08) rotate(1deg); opacity: 0.45; }
}

@keyframes hero-orb {
  0% { transform: translate(-3%, -3%) rotate(0deg); }
  100% { transform: translate(3%, 3%) rotate(8deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  max-width: 900px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.btn-secondary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-3);
}

/* Section */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
}

.section p.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
}

.card-image {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.card-content {
  padding: 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-meta .rating {
  color: var(--accent);
  font-weight: 600;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.card-actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--surface-2);
  transition: background 0.2s;
}

.card-actions a:hover {
  background: var(--surface-3);
}

.card-actions a.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 2px solid var(--surface-3);
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-option {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-option .icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-option h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717a;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-error {
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}

.owner-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.owner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2);
}

.payout-status {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.dashboard-card .btn-sm {
  margin-top: 14px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

.checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--bg);
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li + li {
  margin-top: 10px;
}

.footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 32px;
    display: none;
    flex-direction: column;
    gap: 24px;
    z-index: 99;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.text-muted {
  color: var(--text-muted);
}

/* Status filter buttons */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Intro animation */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: radial-gradient(circle at 50% 50%, var(--surface), var(--bg));
  clip-path: circle(150% at 50% 50%);
}

.intro.animate-out {
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.intro.hidden {
  display: none;
}

.intro-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--bg);
  animation: introPulse 2s ease-in-out infinite;
}

.intro-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: introFadeUp 0.8s ease forwards 0.3s;
}

.intro-bar {
  width: 160px;
  height: 3px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: introFadeUp 0.8s ease forwards 0.5s;
}

.intro-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: introLoad 1.8s ease-in-out forwards 0.6s;
}

@keyframes introPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 60px 15px rgba(34, 211, 238, 0.25); }
}

@keyframes introFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introLoad {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}

/* Hero entrance */
.hero .container > * {
  opacity: 0;
  transform: translateY(30px);
}

.hero.revealed .container > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.revealed .container > *:nth-child(1) { transition-delay: 0.1s; }
.hero.revealed .container > *:nth-child(2) { transition-delay: 0.25s; }
.hero.revealed .container > *:nth-child(3) { transition-delay: 0.4s; }
.hero.revealed .container > *:nth-child(4) { transition-delay: 0.55s; }

/* DJ Empire teaser */
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.teaser-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.teaser-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.6);
  transform: scale(1.05);
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.teaser-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.teaser-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text);
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.4);
}

.teaser-body {
  padding: 32px;
}

.teaser-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.teaser-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.teaser-meta span {
  padding: 6px 12px;
  background: var(--surface-2);
  border-radius: 999px;
}

/* Login page */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 50%, var(--surface), var(--bg));
}

.login-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

/* Dashboard */
.dashboard-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-3);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.dashboard-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dashboard-card .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}

.dashboard-card .value.accent {
  color: var(--accent);
}

.admin-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}

.admin-panel h2 {
  margin-bottom: 24px;
}

.admin-form {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--surface-2);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* Dashboard animated background */
.dashboard-page {
  position: relative;
  overflow: hidden;
}

.dashboard-bg {
  position: fixed;
  inset: 0;
  background: url('../images/logo-wide.png') center center / cover no-repeat;
  opacity: 0.08;
  z-index: -3;
}

.dashboard-swoosh {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(34, 211, 238, 0.95) 50%, transparent 55%);
  background-size: 300% 300%;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  clip-path: polygon(
    0 100%,
    18% 84%,
    34% 68%,
    50% 52%,
    66% 36%,
    82% 20%,
    100% 0,
    100% 8%,
    82% 27%,
    66% 43%,
    50% 59%,
    34% 75%,
    18% 92%,
    0 100%
  );
  z-index: -2;
  opacity: 0.9;
  pointer-events: none;
  animation: swoosh-sweep 2.8s ease-in-out infinite;
}

@keyframes swoosh-sweep {
  0% {
    background-position: 0% 100%;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 35px rgba(34, 211, 238, 0.9));
  }
  100% {
    background-position: 100% 0%;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.6));
  }
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  opacity: 0;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}

.banner {
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.banner-error {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border-bottom: 1px solid rgba(248, 113, 113, 0.3);
}
