/* ==========================================================================
   The New Relics — Official EPK & Band Stylesheet
   Upbeat, High-Energy Palette: Deep Festival Slate, Vibrant Cyan, Coral & Amber
   ========================================================================== */

:root {
  /* Upbeat, High-Energy Color Tokens */
  --bg-core: #0b1120;
  --bg-surface: #111827;
  --bg-surface-elevated: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.72);
  --bg-card-hover: rgba(51, 65, 85, 0.85);

  --accent-primary: #06b6d4;
  /* Electric Cyan */
  --accent-primary-glow: rgba(6, 182, 212, 0.3);
  --accent-coral: #f43f5e;
  /* Energetic Coral/Rose */
  --accent-coral-glow: rgba(244, 63, 94, 0.28);
  --accent-amber: #f59e0b;
  /* Upbeat Amber / Sun */
  --accent-amber-glow: rgba(245, 158, 11, 0.25);
  --accent-green: #10b981;
  /* Fresh Emerald */

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-subtle: #94a3b8;

  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(6, 182, 212, 0.35);
  --border-coral: rgba(244, 63, 94, 0.35);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing & Transitions */
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  color-scheme: dark;
}

body {
  background-color: var(--bg-core);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Ambient Lighting Background */
.bg-stage-ambience {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
}

.orb-coral {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #f43f5e 0%, rgba(244, 63, 94, 0) 70%);
  top: -120px;
  right: -100px;
}

.orb-cyan {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  bottom: 20%;
  left: -200px;
}

.orb-amber {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
  top: 45%;
  right: -150px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  opacity: 0.65;
}

/* Section Shared */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.25rem;
}

.section-header.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.28);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), backdrop-filter var(--transition-smooth), box-shadow var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.header-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.site-header.scrolled .brand-logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:not(.btn):hover {
  color: #ffffff;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-coral));
  transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #f43f5e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.08);
}

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.18);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-coral));
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 15px rgba(6, 182, 212, 0.3);
}

.btn-nav-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.4);
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.hero-backdrop-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  filter: brightness(0.96) saturate(1.22) contrast(1.06);
  transform: scale(1.02);
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Gentle dark vignette on left side to keep typography crisp and readable */
    linear-gradient(90deg, rgba(11, 17, 32, 0.72) 0%, rgba(11, 17, 32, 0.32) 48%, rgba(11, 17, 32, 0.05) 75%),
    /* Soft top bar shading and seamless blend at the bottom into core background */
    linear-gradient(to bottom, rgba(11, 17, 32, 0.35) 0%, transparent 22%, transparent 60%, rgba(11, 17, 32, 0.7) 85%, var(--bg-core) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.epk-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

.hero-logo-wrapper {
  margin-bottom: 1.75rem;
}

.hero-logo-img {
  width: 100%;
  max-width: clamp(280px, 45vw, 440px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.85));
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.title-sub {
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-amber);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 0 20px var(--accent-amber-glow);
}

.title-main {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.98);
}

.highlight-vibrant {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.45));
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #f8fafc;
  max-width: 740px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.25rem;
}

.hero-social-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(6, 182, 212, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.social-header-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-pulse-icon {
  font-size: 1.35rem;
  filter: drop-shadow(0 0 8px var(--accent-amber));
  animation: pulse-ring 2s infinite;
}

.social-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.social-chip svg {
  flex-shrink: 0;
}

.social-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.social-chip.social-ig:hover {
  border-color: #f43f5e;
  background: rgba(244, 63, 94, 0.2);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
  color: #ffffff;
}

.social-chip.social-fb:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

.social-chip.social-yt:hover {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
  color: #ffffff;
}

.social-chip.social-email {
  border-color: rgba(6, 182, 212, 0.4);
  color: var(--accent-primary);
}

.social-chip.social-email:hover {
  border-color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 22px var(--accent-primary-glow);
  color: #ffffff;
}

/* Video Showcase Section (Portrait-Optimized for Shorts & Reels) */
.video-section {
  background: linear-gradient(180deg, var(--bg-core) 0%, var(--bg-surface) 100%);
  position: relative;
}

.video-showcase-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.video-portrait-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 35px rgba(6, 182, 212, 0.18);
  backdrop-filter: blur(16px);
}

.video-portrait-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000000;
  overflow: hidden;
}

.video-portrait-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-portrait-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid var(--border-subtle);
}

.video-context-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.context-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-coral);
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.video-context-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.video-context-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.video-stat-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0.5rem 0;
}

.vstat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vstat-icon {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vstat-item strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.vstat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.video-cta-action {
  padding-top: 0.5rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text-column .lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-text-column p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* EPK Quick Card */
.epk-quick-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.epk-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-coral), var(--accent-amber));
}

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

.quick-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.tag-live {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-coral);
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid var(--accent-coral);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.quick-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.stat-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.quick-genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.genre-pill {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  color: #e2e8f0;
}

.quick-cta-box {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
}

.quick-cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Meet The Band Section (Lineup) */
.lineup-section {
  background: var(--bg-core);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.2);
}

.member-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #0f172a;
  overflow: hidden;
}

.member-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, transparent 100%);
}

.member-role-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.3);
  border: 1px solid var(--accent-primary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.member-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.member-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.member-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Repertoire / Song List Section */
.repertoire-section {
  background: var(--bg-surface);
}

.repertoire-controls {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-input-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input-wrapper input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.95rem 3rem 0.95rem 3.25rem;
  font-size: 1rem;
  color: #ffffff;
  transition: all var(--transition-fast);
  backdrop-filter: blur(12px);
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
  background: rgba(30, 41, 59, 0.95);
}

.search-clear-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
}

.search-clear-btn:hover {
  color: #ffffff;
}

.genre-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.tab-btn.active {
  background: rgba(6, 182, 212, 0.18);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
}

.repertoire-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Song Cards Grid */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.song-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  backdrop-filter: blur(8px);
}

.song-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(6, 182, 212, 0.18);
  background: var(--bg-card-hover);
}

.song-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.song-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.song-artist {
  font-size: 0.95rem;
  color: var(--accent-coral);
  font-weight: 600;
}

.song-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.song-tag {
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
}

.tag-pop-punk {
  background: rgba(244, 63, 94, 0.16);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.tag-alt-rock {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-primary);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.tag-power-pop {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.song-era {
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-family: var(--font-mono);
}

.repertoire-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.repertoire-empty-state h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.repertoire-footer-note {
  margin-top: 1.5rem;
}

.note-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.note-box strong {
  color: #ffffff;
}

.note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-core);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto 2.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  border: 1px solid var(--border-subtle);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92);
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.gallery-card.card-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  max-height: 500px;
}

.gallery-card.card-tall {
  grid-column: span 1;
  aspect-ratio: 4 / 5;
}

.press-download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
}

.press-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
}

.press-info strong {
  color: #ffffff;
}

.press-info span {
  color: var(--text-muted);
}

/* Tech Specs Section */
.tech-specs-section {
  background: var(--bg-surface);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  backdrop-filter: blur(12px);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.15);
}

.spec-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.spec-card p {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.spec-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.spec-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  color: var(--accent-amber);
}

/* Booking & Contact Section */
.booking-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-core) 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.highlight-card {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.12);
}

.contact-card h3,
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-desc,
.form-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.direct-email-box {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.email-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-primary);
  margin-bottom: 0.4rem;
}

.email-display-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.email-text {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.email-text:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.channels-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.social-channel-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.channel-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

.channel-icon {
  font-size: 1.3rem;
}

.channel-details {
  display: flex;
  flex-direction: column;
}

.channel-platform {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-subtle);
}

.channel-handle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.booking-guarantee-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.check-icon {
  color: var(--accent-coral);
  font-weight: 800;
}

/* Booking Form Styles */
.form-card {
  border-color: var(--border-subtle);
}

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

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-group label .required {
  color: var(--accent-coral);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
  background: rgba(22, 32, 54, 0.95);
}

.form-tip {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
  text-align: center;
}

/* Modals & Lightbox */
.lightbox-modal,
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.active,
.modal.active {
  display: flex;
}

.lightbox-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 85vh;
}

.lightbox-figure img {
  max-height: 75vh;
  max-width: 85vw;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(6, 182, 212, 0.2);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-close,
.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.5rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.lightbox-close:hover,
.modal-close:hover {
  color: var(--accent-coral);
  transform: scale(1.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--accent-primary);
  color: #0b1120;
  box-shadow: 0 0 20px var(--accent-primary);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Video Config Modal */
.modal-card {
  position: relative;
  z-index: 2;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--accent-primary-glow);
}

.modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent-primary);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
.site-footer {
  background: #080d1a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 3rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy {
  color: var(--text-subtle);
  font-size: 0.85rem;
  text-align: right;
}

.footer-credits a {
  color: var(--accent-primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {

  .about-grid,
  .booking-grid,
  .video-showcase-layout {
    grid-template-columns: 1fr;
  }

  .gallery-card.card-wide,
  .gallery-card.card-tall {
    grid-column: span 6;
  }

  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) {
    grid-column: span 4;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .brand-logo-img {
    height: 36px;
    max-width: 140px;
  }

  .hero-logo-wrapper {
    margin-bottom: 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2rem 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .nav-links a:not(.btn) {
    font-size: 1.15rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links .btn {
    margin-top: 0.5rem;
    text-align: center;
  }

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

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

  .gallery-card.card-wide,
  .gallery-card.card-tall {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}