:root {
  --primary: #ffffff;
  --primary-hover: #cccccc;
  --bg-color: #0f0f11;
  --bg-darker: #0f0f11;
  --bg-card: #151518;
  --text-color: #e5e5e7;
  --text-muted: #86868b;
  --border-color: #111111;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-height: 80px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

/* Ambient Glow */
.ambient-glow-1 {
  position: fixed;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.038) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: drift 25s infinite alternate ease-in-out;
  filter: blur(50px);
}

.ambient-glow-2 {
  position: fixed;
  bottom: -15%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: drift 35s infinite alternate-reverse ease-in-out;
  filter: blur(60px);
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 5%) scale(1.05); }
  100% { transform: translate(-5%, -8%) scale(0.95); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #1c1c1e;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2c2c2e;
}

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

a:hover {
  color: #ffffff;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Apple-Style Glass Header - Centered Floating Pill */
header {
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: var(--nav-height);
  padding: 0 3rem;
  background: rgba(255, 255, 255, 0.18); /* Whitish, light frosted glass */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25); /* Elegant crisp white edge */
  border-radius: 40px; /* Symmetrical Pill */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 
              0 0 25px rgba(255, 255, 255, 0.05); /* Soft white halo */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  top: 15px;
  height: 65px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
              0 0 20px rgba(255, 255, 255, 0.07);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo img {
  height: 48px; /* Minimally larger logo */
  width: auto;
  display: block;
  transition: var(--transition-smooth);
  animation: logoPulse 3.2s infinite ease-in-out;
}

header.scrolled .logo img {
  height: 38px;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.05));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.05));
  }
}



nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem; /* reduced gap to fit the pill items beautifully side-by-side */
}

nav a {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65); /* Lighter gray for good contrast on white glass */
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12); /* Brighter glass hover capsule */
}

nav a.active {
  color: #000000;
  background: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 140px 5% 0px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0f0f11 0px, #0f0f11 150px, rgba(15, 15, 17, 0) 350px, rgba(15, 15, 17, 0) 55%, rgba(15, 15, 17, 0.4) 75%, rgba(15, 15, 17, 0.8) 88%, #0f0f11 98%, #0f0f11 100%), 
              url('../img/back.webp') center 150px/cover no-repeat;
  z-index: 1;
  animation: kenBurns 30s infinite alternate ease-in-out;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 94%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 3rem 1.8rem;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.03); /* Translucent premium frosted glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Silver crisp edge */
  border-bottom: none; /* Flat bottom edge transition */
  border-radius: 32px 32px 0 0; /* Flat bottom corners */
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Soft top highlight */
  
  /* Smooth vertical mask to blend the glass panel with the background */
  mask-image: linear-gradient(to bottom, black 0%, black 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 80%);
}

/* Hero Kicker (Minimalist Top Accent) */
.hero-kicker {
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  white-space: nowrap;
  font-weight: 700; /* Thicker for SIX */
  margin-bottom: 0.8rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #e2e2e5; /* elegant off-white/silver */
  opacity: 0;
  transform: translateY(30px) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: heroReveal3D 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, float3D 8s ease-in-out infinite 1.3s;
  display: inline-block;
  text-shadow: 
    1px 1px 0px #b0b0b5,
    2px 2px 0px #9b9ba0,
    3px 3px 0px #86868b,
    4px 4px 0px #727277,
    5px 5px 15px rgba(0, 0, 0, 0.9),
    0px 10px 25px rgba(0, 0, 0, 0.9);
}

.accent-fire {
  font-weight: 900;
  color: #ffffff; /* Bright pure white */
  display: inline-block;
  animation: glowPulse 4s ease-in-out infinite;
  text-shadow: 
    1px 1px 0px #ffffff,
    2px 2px 0px #e6e6e6,
    3px 3px 0px #cccccc,
    4px 4px 0px #b3b3b3,
    5px 5px 0px #999999,
    6px 6px 15px rgba(255, 255, 255, 0.2),
    0px 10px 30px rgba(0, 0, 0, 0.95);
}

/* Minimalist Subtitle Paragraph */
.hero-subtitle {
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  color: #ffffff;
  max-width: 840px;
  margin: 0 auto 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

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

@keyframes heroReveal3D {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateX(0deg) rotateY(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes float3D {
  0% {
    transform: translateY(0px) rotateX(3deg) rotateY(-4deg) translateZ(0px);
  }
  50% {
    transform: translateY(-12px) rotateX(-3deg) rotateY(4deg) translateZ(10px);
  }
  100% {
    transform: translateY(0px) rotateX(3deg) rotateY(-4deg) translateZ(0px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
}

/* Scroll indicator */
.scroll-indicator {
  display: none !important;
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: #ffffff;
  animation: scrollScroll 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scrollScroll {
  0% { top: -15px; }
  50% { top: 50px; }
  100% { top: 50px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px; /* Modern capsule button */
  transition: var(--transition-smooth);
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.btn-link {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-link:hover::after {
  transform: scaleX(1);
}

.btn-link span.arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-link:hover span.arrow {
  transform: translateX(4px);
}

/* Sections & Spacing */
.section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 6rem;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Asymmetric Split Section Layout */
.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  padding: 4rem 0;
}

.split-section-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: sticky;
  top: 140px;
  align-self: start;
}

.split-section-content {
  display: flex;
  flex-direction: column;
}

/* Tour Dates borderless timeline list */
.tour-list {
  display: flex;
  flex-direction: column;
}


/* Page Headers */
.page-header {
  margin-top: var(--nav-height);
  padding: 6.5rem 5% 3.5rem;
  text-align: center;
  position: relative;
}

.page-header-minimal {
  padding-bottom: 0rem;
}

.page-header-minimal p {
  margin-top: 0.5rem;
}

.page-header-minimal + .section {
  padding-top: 3rem;
}

.page-header h1 {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Minimalist Form Elements */
.form-group {
  margin-bottom: 3rem;
  position: relative;
}

/* Contact page redesign styles */
.contact-details-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0;
}

.contact-details-hero {
  text-align: center;
}

.contact-details-hero h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.contact-details-hero .lead-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.8rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
}

.contact-detail-card:not(.no-link):hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.01);
}

.contact-card-icon {
  margin-right: 2.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  display: block;
}

.contact-detail-card:not(.no-link):hover .contact-card-icon {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.contact-card-value {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.4s ease;
}

.contact-detail-card:not(.no-link):hover .contact-card-value {
  color: #ffffff;
}

.contact-card-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.contact-detail-card:not(.no-link):hover .contact-card-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-details-footer {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-details-footer h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-details-footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.details-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.details-check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

.checklist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-right: 0.1rem;
  transition: all 0.4s ease;
}

.checklist-icon svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.6);
  display: block;
  transition: stroke 0.4s ease;
}

.details-check-list li:hover .checklist-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.details-check-list li:hover .checklist-icon svg {
  stroke: #ffffff;
}

.response-note {
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0 !important;
}

/* Downloads / Press Info */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.download-card h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.download-card p {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

/* Content block default styling */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content-centered {
  text-align: center;
}

.text-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
}

.text-content h2, .text-content h3 {
  color: #ffffff;
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
}

/* Legals & Privacy */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-color);
}

.legal-content h1, .legal-content h2, .legal-content h3 {
  color: #ffffff;
  font-weight: 500;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.legal-content h1 { font-size: 2.8rem; }
.legal-content h2 { font-size: 1.8rem; }
.legal-content h3 { font-size: 1.3rem; }

.legal-content p {
  margin-bottom: 1.8rem;
}

/* Footer style */
footer {
  background-color: transparent;
  border-top: none;
  padding: 2rem 5% 1.5rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-copy {
  color: #5c5c5e;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* IntersectionObserver reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-stagger.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive Overrides */


@media (max-width: 992px) {
  .hero h1 {
    font-size: clamp(2.2rem, 7.5vw, 4.2rem);
    white-space: nowrap;
    text-shadow: 
      1px 1px 0px #b0b0b5,
      2px 2px 0px #86868b,
      3px 3px 0px #727277,
      4px 4px 15px rgba(0, 0, 0, 0.9);
  }
  
  .accent-fire {
    text-shadow: 
      1px 1px 0px #ffffff,
      2px 2px 0px #e6e6e6,
      3px 3px 0px #b3b3b3,
      4px 4px 15px rgba(255, 255, 255, 0.15),
      0px 6px 15px rgba(0, 0, 0, 0.9);
  }
  
  header {
    height: 80px;
    padding: 0 5%;
  }

  .logo img {
    height: 38px;
  }

  header.scrolled .logo img {
    height: 32px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem 0;
  }

  .split-section-title {
    position: static;
    font-size: 2rem;
  }



  .contact-details-hero h2 {
    font-size: 2.2rem;
  }
  .contact-detail-card {
    padding: 1.5rem;
  }
  .contact-card-icon {
    margin-right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-card-value {
    font-size: 1.1rem;
  }
  .contact-details-footer {
    padding: 2rem 1.5rem;
  }
  .details-check-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: max-content;
    margin: 0 auto 2rem;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  header {
    top: 35px;
    height: var(--nav-height);
    width: 92%;
    padding: 0 1.5rem;
    border-radius: 30px;
    justify-content: space-between;
  }

  nav {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
  }

  header.scrolled {
    top: 15px;
    height: 60px;
  }

  .logo img {
    height: 32px;
  }

  header.scrolled .logo img {
    height: 32px;
  }

  .hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 290px 3% 0px;
  }

  .hero-bg {
    background: linear-gradient(to bottom, 
                  #0f0f11 0px, 
                  #0f0f11 90px, 
                  rgba(15, 15, 17, 0) 130px, 
                  rgba(15, 15, 17, 0) 240px, 
                  #0f0f11 310px, 
                  #0f0f11 100%
                ), 
                url('../img/back.webp') center 90px / 100% auto no-repeat;
    animation: kenBurns 30s infinite alternate ease-in-out;
  }

  .hero-content {
    width: 94%;
    padding: 2rem 1.5rem;
    margin: 10px auto 0;
  }

  .hero-content::before {
    border-radius: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.7rem);
    white-space: nowrap;
    text-shadow: 
      1px 1px 0px #b0b0b5,
      2px 2px 0px #727277,
      3px 3px 10px rgba(0, 0, 0, 0.95);
  }
  
  .accent-fire {
    text-shadow: 
      1px 1px 0px #ffffff,
      2px 2px 0px #b3b3b3,
      3px 3px 10px rgba(255, 255, 255, 0.1),
      0px 4px 12px rgba(0, 0, 0, 0.95);
  }
  
  .hero-subtitle {
    font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero-btns {
    flex-direction: row;
    gap: 0.6rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-btns .btn {
    width: auto;
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section {
    padding: 3.5rem 5%;
  }


  .page-header {
    padding: 5.5rem 5% 3rem;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .page-header p {
    font-size: 1.2rem;
  }

  .member-details h3 {
    font-size: 2.2rem;
  }


  /* Full screen mobile navigation */
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  nav ul.active {
    opacity: 1;
    visibility: visible;
  }

  nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  nav ul.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger navigation item animations */
  nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
  nav ul.active li:nth-child(2) { transition-delay: 0.15s; }
  nav ul.active li:nth-child(3) { transition-delay: 0.2s; }
  nav ul.active li:nth-child(4) { transition-delay: 0.25s; }
  nav ul.active li:nth-child(5) { transition-delay: 0.3s; }
  nav ul.active li:nth-child(6) { transition-delay: 0.35s; }

  nav a {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

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

  /* Mobile footer styles - no wrap and smaller text */
  .footer-nav {
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: nowrap;
  }
  .footer-nav a {
    font-size: 0.65rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .footer-copy {
    font-size: 0.52rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

/* Footer Badge "powered by Multopia" */
.footer-badge {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

@keyframes badgeBreath {
  0%, 100% { 
    border-color: rgba(255, 255, 255, 0.2); 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: scale(1);
  }
  50% { 
    border-color: rgba(255, 255, 255, 0.35); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
  }
}

.powered-by-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12); /* Frost white translucent background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Symmetrical border edge */
  border-radius: 99px; /* Symmetrical Pill */
  padding: 3px 8px 3px 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  animation: badgeBreath 4s ease-in-out infinite;
}

.powered-by-badge:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.15);
}

.multopia-badge-logo {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 2px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.powered-by-badge:hover .multopia-badge-logo {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  transform: scale(1.08);
}

.badge-text {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  text-transform: none; /* Make sure parent uppercase rules don't affect this */
}

.badge-text strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.powered-by-badge:hover .badge-text {
  color: rgba(255, 255, 255, 0.85);
}

.powered-by-badge:hover .badge-text strong {
  color: #ffffff;
}

/* Hero Illustrations & Particle Overlay */
.hero-illustrations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}



/* Animated Fire Embers - Expanded & Enhanced */
.ember {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 20%, rgba(255, 255, 255, 0) 70%);
  filter: blur(2px);
  opacity: 0;
}

.ember-1 {
  left: 15%;
  bottom: 8%;
  width: 12px;
  height: 12px;
  animation: riseEmber 7s infinite linear 0.5s;
}

.ember-2 {
  right: 18%;
  bottom: 15%;
  width: 8px;
  height: 8px;
  animation: riseEmber 9s infinite linear 2.5s;
}

.ember-3 {
  left: 32%;
  bottom: 5%;
  width: 10px;
  height: 10px;
  animation: riseEmber 8s infinite linear 4.5s;
}

.ember-4 {
  right: 25%;
  bottom: 12%;
  width: 14px;
  height: 14px;
  animation: riseEmber 10s infinite linear 1.2s;
}

.ember-5 {
  left: 48%;
  bottom: 10%;
  width: 9px;
  height: 9px;
  animation: riseEmber 6.5s infinite linear 3.2s;
}

.ember-6 {
  right: 42%;
  bottom: 8%;
  width: 11px;
  height: 11px;
  animation: riseEmber 8.5s infinite linear 1.8s;
}

.ember-7 {
  left: 60%;
  bottom: 15%;
  width: 7px;
  height: 7px;
  animation: riseEmber 7.5s infinite linear 5.0s;
}

.ember-8 {
  right: 58%;
  bottom: 5%;
  width: 13px;
  height: 13px;
  animation: riseEmber 9.5s infinite linear 0.8s;
}

.ember-9 {
  left: 72%;
  bottom: 12%;
  width: 10px;
  height: 10px;
  animation: riseEmber 8.0s infinite linear 2.0s;
}

.ember-10 {
  right: 75%;
  bottom: 7%;
  width: 12px;
  height: 12px;
  animation: riseEmber 10.5s infinite linear 4.0s;
}

.ember-11 {
  left: 85%;
  bottom: 18%;
  width: 8px;
  height: 8px;
  animation: riseEmber 7.2s infinite linear 1.5s;
}

.ember-12 {
  right: 88%;
  bottom: 10%;
  width: 14px;
  height: 14px;
  animation: riseEmber 9.0s infinite linear 3.5s;
}

@keyframes riseEmber {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    transform: translate(60px, -320px) scale(0.3);
    opacity: 0;
  }
}

/* Dynamic Background Doodles Layer */
.bg-doodles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* Render behind content and sections */
  overflow: hidden;
}

body {
  position: relative;
}

/* Ensure sections are relative and have higher stack so they render on top of the doodles */
section, footer, .page-header {
  position: relative;
  z-index: 5;
}


.bg-doodle {
  position: absolute;
  opacity: 0.28; /* subtle white pencil look */
  filter: drop-shadow(0 15px 35px rgba(255, 255, 255, 0.08)); /* 3D floating effect over dark bg */
  transition: opacity 0.3s ease, transform 0.1s linear;
  will-change: transform;
  pointer-events: none;
  color: #ffffff;
}

.bg-doodle-sway {
  width: 100%;
  height: 100%;
}

@keyframes sway-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  25% { transform: translate3d(4px, -5px, 0) rotate(1.2deg); }
  50% { transform: translate3d(8px, -12px, 0) rotate(3.0deg); }
  75% { transform: translate3d(3px, -7px, 0) rotate(1.5deg); }
}

@keyframes sway-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  25% { transform: translate3d(-3px, -6px, 0) rotate(-1.5deg); }
  50% { transform: translate3d(-7px, -15px, 0) rotate(-3.5deg); }
  75% { transform: translate3d(-3px, -9px, 0) rotate(-1.8deg); }
}

/* Hide background doodles on mobile to keep layouts clean and speed up page load */
@media (max-width: 768px) {
  .bg-doodles-container {
    display: none !important;
  }
}

/* About Teaser Section Redesign */
.about-teaser-section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  /* Transparent background to let ambient glows shine through, matching the other pages */
}

.about-teaser-header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 6rem;
}

.about-kicker {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #a0a0a0;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.about-teaser-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-intro {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.about-intro .highlight-text {
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 40%, #a0a0a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-intro-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
}

.about-intro-details p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #a0a0a7;
  margin: 0;
}

@media (max-width: 768px) {
  .about-intro-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

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

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 3.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.about-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.about-card:hover .about-card-glow {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-card-illus-icon {
  width: 155px;
  height: 155px;
  margin-bottom: 1.8rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: url(#pencilFilter) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.12));
}

.about-card:hover .about-card-illus-icon {
  transform: scale(1.1) rotate(4deg);
  filter: url(#pencilFilter) drop-shadow(0 12px 24px rgba(255, 255, 255, 0.28));
}

.about-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.card-teaser {
  font-size: 1.02rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1; /* Aligns buttons at the bottom */
}

.card-features li {
  font-size: 0.95rem;
  color: #a0a0a7;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.3;
}

.card-features li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-card:hover .card-features li::before {
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.btn-card-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.btn-card-link span.arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-card-link:hover {
  color: #a0a0a0;
}

.btn-card-link:hover span.arrow {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-teaser-section {
    padding: 1.5rem 5% 3.5rem;
  }
  .about-teaser-header {
    margin-bottom: 4rem;
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .about-card {
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   Termine / Tour Page Redesign Styles
   ========================================================================== */

/* Tab Navigation */
.termine-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tab-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.tab-btn.active:hover {
  color: #000000;
  background: #ffffff;
  transform: none;
}

/* Grid Container */
.termine-grid-container {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.termine-grid-container.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.termine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  width: 100%;
}

/* Card Design */
.termin-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.01);
}

.termin-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.termin-card:hover .termin-card-glow {
  opacity: 1;
}

.termin-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7),
              0 0 30px rgba(255, 255, 255, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Header inside Card */
.termin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Date Badge Component */
.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  width: 70px;
  height: 75px;
  text-align: center;
  transition: var(--transition-fast);
}

.termin-card:hover .date-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 2px;
}

.date-badge .month {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 1px;
}

.date-badge .year {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

.termin-card:hover .date-badge .month {
  color: #ffffff;
}

/* Status Badges */
.status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}

.status-public {
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.35);
  color: #2ed573;
  text-shadow: 0 0 8px rgba(46, 213, 115, 0.3);
}

.status-private {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a0a0a7;
}

/* Card Body */
.termin-card-body {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.termin-card-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #d1d1d6;
  font-size: 0.9rem;
}

.location-info svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Card Footer */
.termin-card-footer {
  display: flex;
  width: 100%;
}

.btn-card-action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-card-action:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.private-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .termine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .termine-tabs-container {
    margin-bottom: 3rem;
    gap: 0.8rem;
  }
  
  .tab-btn {
    font-size: 0.85rem;
    padding: 0.75rem 1.4rem;
  }

  .termine-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .termin-card {
    min-height: auto;
  }
}

/* ==========================================================================
   Über Uns Page Redesign Styles
   ========================================================================== */

/* Enhanced Intro Section */
.about-band-intro {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 2.5rem;
  margin-top: 1rem;
}

.about-band-intro .lead-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.band-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin: 3rem 0;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.01);
}

.highlight-icon {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 1.2rem;
  line-height: 1;
  transition: color 0.4s ease;
}

.highlight-item:hover .highlight-icon {
  color: rgba(255, 255, 255, 0.35);
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.highlight-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 2.2rem;
  border-radius: 22px;
  margin-top: 3.5rem;
  gap: 1.5rem;
}

.cta-box span {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.cta-link-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: #ffffff;
  color: #000000;
  border-radius: 35px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.cta-link-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   CI-Aligned, Minimalist & Clean "Über uns" Redesign
   ========================================================================== */

.member-rows-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  margin-top: 4rem;
}

.member-row {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 480px;
  position: relative;
  transition: all 0.5s ease;
}

.member-row:nth-child(even) {
  flex-direction: row-reverse;
}

.member-row-img-wrapper {
  flex: 0 0 420px;
  height: 530px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.member-row:hover .member-row-img-wrapper {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.02), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.member-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-row:hover .member-row-img {
  transform: scale(1.03);
}

.member-row-info {
  flex: 1;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 3.5rem 3.5rem 3rem;
  margin-left: -5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.member-row:nth-child(even) .member-row-info {
  margin-left: 0;
  margin-right: -5rem;
}

/* Parallax offsets on hover */
.member-row:not(:nth-child(even)):hover .member-row-img-wrapper {
  transform: translateX(-10px);
}

.member-row:not(:nth-child(even)):hover .member-row-info {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.member-row:nth-child(even):hover .member-row-img-wrapper {
  transform: translateX(10px);
}

.member-row:nth-child(even):hover .member-row-info {
  transform: translateX(-10px);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.member-row-bg-num {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-primary);
  user-select: none;
  transition: all 0.5s ease;
}

.member-row:hover .member-row-bg-num {
  color: rgba(255, 255, 255, 0.03);
}

.member-row:nth-child(even) .member-row-bg-num {
  left: auto;
  right: -1rem;
}

.member-row-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
}

.member-row-role {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  display: block;
  margin-bottom: 0.8rem;
}

.member-row-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -1px;
}

.member-row-nickname {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.5rem;
}

.member-row-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.6rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.detail-val {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: right;
  max-width: 70%;
}

.member-row-motto {
  position: relative;
  z-index: 1;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.member-row-motto blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  border: none;
}

/* ==========================================================================
   CI-Aligned, Minimalist & Clean "Termine" Redesign
   ========================================================================== */

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 950px;
  margin: 4rem auto 0;
}

.tour-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.8rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.tour-row-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 82, 59, 0.05) 0%, rgba(255, 82, 59, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.tour-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 82, 59, 0.3); /* brand hover border color */
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 82, 59, 0.03);
}

.tour-row:hover .tour-row-glow {
  opacity: 1;
}

.tour-row-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 0 0 270px;
}

.tour-row .date-badge {
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 0.5rem !important;
  padding: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  flex: 0 0 95px !important;
}

.tour-row .date-badge .day {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff523b; /* brand color */
  line-height: 1;
}

.tour-row .date-badge .month {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
}

.tour-row .date-badge .year {
  display: none !important;
}

.tour-row-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0;
  padding-left: 2.5rem;
  border-left: none;
}

.tour-row-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.tour-row-body .location-info {
  font-size: 0.9rem;
  color: #a0a0a7;
  gap: 0.4rem;
  display: flex;
  align-items: center;
}

.tour-row-body .location-info svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.4);
}

.tour-row-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 200px;
  justify-content: flex-end;
}

.btn-tour-action {
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-tour-action:hover {
  background: #ff523b;
  border-color: #ff523b;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 82, 59, 0.4);
}

.tour-row .status-badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
}

/* Responsiveness overrides for clean lists & grid cards */
@media (max-width: 992px) {
  .member-row-img-wrapper {
    flex: 0 0 320px;
    height: 440px;
  }
  .member-row-info,
  .member-row:nth-child(even) .member-row-info {
    margin-left: -3rem;
    padding: 2.5rem 2.5rem 2rem;
  }
  .member-row:nth-child(even) .member-row-info {
    margin-right: -3rem;
  }
  .member-row-header h2 {
    font-size: 2.2rem;
  }
  .band-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .tour-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }

  .tour-row-header {
    flex: none;
    width: 100%;
    justify-content: space-between;
  }

  .tour-row-body {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    width: 100%;
  }

  .tour-row-footer {
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

/* Polaroid-style Gallery Redesign */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-color);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(255, 255, 255, 0.02);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .member-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-band-intro {
    padding-left: 1.5rem;
  }

  .about-band-intro .lead-text {
    font-size: 1.15rem;
  }

  .band-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.8rem;
    margin-top: 2.5rem;
    gap: 1.2rem;
  }

  .cta-link-btn {
    width: 100%;
    text-align: center;
  }

  .member-rows-container {
    gap: 4rem;
  }
  .member-row,
  .member-row:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: auto;
    margin-bottom: 4rem;
  }
  .member-row-img-wrapper {
    flex: none;
    width: 100%;
    height: 400px;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
  }
  .member-row-info,
  .member-row:nth-child(even) .member-row-info {
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    border-radius: 24px;
    padding: 2.5rem 1.8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .member-row-bg-num {
    top: -1.5rem;
    left: 1.5rem;
    font-size: 6rem;
  }
  .member-row:nth-child(even) .member-row-bg-num {
    right: 1.5rem;
    left: auto;
  }
  .member-row-header h2 {
    font-size: 2rem;
  }
  .member-row-nickname {
    font-size: 1.4rem;
  }
  /* Disable hover shifts on mobile */
  .member-row:not(:nth-child(even)):hover .member-row-img-wrapper,
  .member-row:nth-child(even):hover .member-row-img-wrapper,
  .member-row:not(:nth-child(even)):hover .member-row-info,
  .member-row:nth-child(even):hover .member-row-info {
    transform: none;
  }
}



/* ==========================================================================
   Playlist (Repertoire) Dashboard Redesign
   ========================================================================== */

/* Playlist Stats Widget */
.playlist-stats-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.playlist-stat-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 3rem;
  border-radius: 16px;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.playlist-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #ffffff 40%, #a0a0a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Playlist Controls (Search & Filter) */
.playlist-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.playlist-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.filter-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
  transform: scale(1.03);
}

.tab-icon-svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  display: inline-block;
  vertical-align: middle;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.filter-tab:hover .tab-icon-svg,
.filter-tab.active .tab-icon-svg {
  stroke: #ffffff;
}

.filter-tab.active .tab-icon-svg {
  transform: scale(1.1);
}

/* Playlist Search Bar */
.playlist-search-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

#playlist-search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

#playlist-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.04);
}

.playlist-search-wrapper .search-icon-svg {
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  pointer-events: none;
  transition: stroke 0.3s ease;
}

#playlist-search-input:focus ~ .search-icon-svg {
  stroke: rgba(255, 255, 255, 0.8);
}

.search-clear-btn {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Playlist Card Repertoire Grid */
.playlist-repertoire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  transition: all 0.4s ease;
}

.playlist-track-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.playlist-track-card.fade-out {
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  pointer-events: none;
}

.playlist-track-card.hidden {
  display: none;
}

/* Vinyl Player Jacket Design */
.track-vinyl-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.track-vinyl {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b0b0c;
  border: 2px solid #141416;
  box-shadow: inset 0 0 0 3px #1c1c1f, 0 2px 5px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vinyl-center {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid #000;
}

.playlist-track-card:hover .track-vinyl {
  transform: rotate(360deg);
}

.track-info {
  flex-grow: 1;
  min-width: 0;
}

.track-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.track-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Monochrome Styling for Genre Badges & Card Hover states */
.playlist-track-card .track-badge {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.playlist-track-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.04);
  transform: translateY(-4px) scale(1.015);
  background: rgba(255, 255, 255, 0.035);
}

.playlist-track-card:hover .track-badge {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Playlist No Results Card */
.playlist-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.no-results-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.no-results-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
}

.playlist-no-results h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.playlist-no-results p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive Playlist Overrides */
@media (max-width: 1024px) {
  .playlist-repertoire-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .playlist-stats-container {
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .playlist-stat-card {
    padding: 1.2rem 2rem;
    min-width: 140px;
    flex-grow: 1;
  }

  .playlist-controls {
    margin-bottom: 3rem;
    gap: 1.5rem;
  }

  .filter-tab {
    padding: 0.65rem 1.3rem;
    font-size: 0.82rem;
  }

  .playlist-repertoire-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .playlist-track-card {
    padding: 1.1rem;
  }
}

@media (max-width: 480px) {
  .playlist-filters {
    gap: 0.5rem;
  }
  
  .filter-tab {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    flex-grow: 1;
    justify-content: center;
  }
}



/* Shared Background Illustrations System */
body {
  position: relative;
}

.hero, .section, footer, .page-header {
  position: relative;
  z-index: 5;
}

/* 10 Background Instruments Placement Rules */
.bg-illustrations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  pointer-events: none;
  z-index: 1; /* Render in the background behind content */
  overflow: hidden;
}

.bg-svg-illus {
  position: absolute;
  opacity: 0.38; /* subtle but visible hand-drawn look */
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  pointer-events: none;
  transition: opacity 0.5s ease;
  --scale: 1;
}

.bg-left-side {
  /* position set individually to allow content overlap */
}

.bg-right-side {
  /* position set individually to allow content overlap */
}

.inst-1 {
  top: 200px;
  left: 6.4%;
  width: 50px;
  height: 120px;
  --rot: -15deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatGuitarBg 21s infinite ease-in-out;
  animation-delay: -1s;
}
.inst-2 {
  top: 483px;
  right: 11.5%;
  width: 55px;
  height: 55px;
  --rot: -12deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatDrumBg 22s infinite ease-in-out;
  animation-delay: -2s;
}
.inst-3 {
  top: 790px;
  left: 8.6%;
  width: 61px;
  height: 33px;
  --rot: 6deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatAmpBg 23s infinite ease-in-out;
  animation-delay: -3s;
}
.inst-4 {
  top: 1101px;
  right: 10.8%;
  width: 45px;
  height: 44px;
  --rot: 2deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatMicBg 24s infinite ease-in-out;
  animation-delay: -4s;
}
.inst-5 {
  top: 1404px;
  left: 11.3%;
  width: 43px;
  height: 76px;
  --rot: -16deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatKeysBg 25s infinite ease-in-out;
  animation-delay: -5s;
}
.inst-6 {
  top: 1634px;
  right: 10.8%;
  width: 50px;
  height: 120px;
  --rot: 4deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatGuitarBg 26s infinite ease-in-out;
  animation-delay: -6s;
}
.inst-7 {
  top: 1934px;
  left: 5.5%;
  width: 54px;
  height: 130px;
  --rot: 19deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatDrumBg 27s infinite ease-in-out;
  animation-delay: -7s;
}
.inst-8 {
  top: 2164px;
  right: 4.5%;
  width: 47px;
  height: 84px;
  --rot: -3deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatAmpBg 28s infinite ease-in-out;
  animation-delay: -8s;
}
.inst-9 {
  top: 2397px;
  left: 6.5%;
  width: 54px;
  height: 129px;
  --rot: 14deg;
  transform: rotate(var(--rot)) scale(var(--scale));
  animation: floatMicBg 29s infinite ease-in-out;
  animation-delay: -9s;
}

/* Float Animations for Hand-Drawn Instruments */
@keyframes floatGuitarBg {
  0%, 100% { transform: rotate(var(--rot)) translateY(0) scale(var(--scale)); }
  50% { transform: rotate(calc(var(--rot) + 3deg)) translateY(-18px) scale(calc(var(--scale) * 1.03)); }
}

@keyframes floatDrumBg {
  0%, 100% { transform: rotate(var(--rot)) translateY(0) scale(var(--scale)); }
  50% { transform: rotate(calc(var(--rot) - 2deg)) translateY(-12px) scale(calc(var(--scale) * 1.02)); }
}

@keyframes floatAmpBg {
  0%, 100% { transform: rotate(var(--rot)) translateY(0) scale(var(--scale)); }
  50% { transform: rotate(calc(var(--rot) + 4deg)) translateY(-15px) scale(calc(var(--scale) * 1.03)); }
}

@keyframes floatMicBg {
  0%, 100% { transform: rotate(var(--rot)) translateY(0) scale(var(--scale)); }
  50% { transform: rotate(calc(var(--rot) - 3deg)) translateY(-10px) scale(calc(var(--scale) * 1.02)); }
}

@keyframes floatKeysBg {
  0%, 100% { transform: rotate(var(--rot)) translateY(0) scale(var(--scale)); }
  50% { transform: rotate(calc(var(--rot) + 2deg)) translateY(-8px) scale(calc(var(--scale) * 1.02)); }
}

/* Responsive screen bounds overrides */
@media (max-width: 1440px) {
  .bg-svg-illus {
    opacity: 0.32; /* slightly lower on mid-size screens */
    --scale: 0.8;
  }
}

/* Limit horizontal positioning on screens under 1200px so they don't go behind text/images */
@media (max-width: 1200px) {
  .bg-left-side { left: 1% !important; }
  .bg-right-side { right: 1% !important; }
}

@media (max-width: 992px) {
  .bg-svg-illus {
    opacity: 0.22; /* subtle on tablet viewports */
    --scale: 0.65;
  }
  .bg-left-side { left: 0.8% !important; }
  .bg-right-side { right: 0.8% !important; }
}

@media (max-width: 768px) {
  .bg-svg-illus {
    opacity: 0.16; /* visible but subtle on mobile screens to preserve text contrast */
    --scale: 0.5;
  }
  .bg-left-side { left: 5px; }
  .bg-right-side { right: 5px; }
  
  /* Hide 50% of instruments on mobile to ensure fast loading and zero layout overlap */
  .inst-2, .inst-4, .inst-6, .inst-8, .inst-10 {
    display: none;
  }
}
