/* Import Google Fonts for all available fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@400&family=Azeret+Mono:wght@400;500;700&family=Courier+Prime:wght@400;700&family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;700&family=Fondamento:wght@400&family=Fraunces:wght@300;400;700&family=Gentium+Plus:wght@400;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&family=Roboto:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

/* Utility classes */
.hidden {
  display: none !important;
}

/* Note: Bagnard is a custom font that may need to be loaded separately */
/* For now, we'll use a fallback to a similar serif font */

:root {
  /* Base colors */
  --color-accent-r: 245;
  --color-accent-g: 158;
  --color-accent-b: 11;
  --color-foreground-r: 255;
  --color-foreground-g: 255;
  --color-foreground-b: 255;
  --color-background-r: 15;
  --color-background-g: 15;
  --color-background-b: 15;
  
  /* Calculated colors using base RGB values */
  --color-accent: rgba(var(--color-accent-r), var(--color-accent-g), var(--color-accent-b), 1);
  --color-accent-muted: rgba(var(--color-accent-r), var(--color-accent-g), var(--color-accent-b), 0.5);
  --color-accent-subtle: rgba(var(--color-accent-r), var(--color-accent-g), var(--color-accent-b), 0.7);
  --color-accent-subliminal: rgba(var(--color-accent-r), var(--color-accent-g), var(--color-accent-b), 0.1);
  
  --color-foreground: rgba(var(--color-foreground-r), var(--color-foreground-g), var(--color-foreground-b), 1);
  --color-foreground-muted: rgba(var(--color-foreground-r), var(--color-foreground-g), var(--color-foreground-b), 0.7);
  --color-foreground-subtle: rgba(var(--color-foreground-r), var(--color-foreground-g), var(--color-foreground-b), 0.5);
  --color-foreground-subliminal: rgba(var(--color-foreground-r), var(--color-foreground-g), var(--color-foreground-b), 0.1);
  
  --color-background: rgba(var(--color-background-r), var(--color-background-g), var(--color-background-b), 1);
  --color-background-muted: rgba(var(--color-background-r), var(--color-background-g), var(--color-background-b), 0.7);
  --color-background-subtle: rgba(var(--color-background-r), var(--color-background-g), var(--color-background-b), 0.5);
  --color-background-subliminal: rgba(var(--color-background-r), var(--color-background-g), var(--color-background-b), 0.1);

  /* Font variables - will be updated dynamically via JavaScript */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  background-image: radial-gradient(circle at 80% 20%, var(--color-background-subtle), transparent 25%),
                    radial-gradient(circle at 20% 80%, var(--color-accent-subliminal), transparent 25%);
  background-attachment: fixed;
  color: var(--color-foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2; 
  letter-spacing: -0.02em;
}

a {
  color: var(--color-accent-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent));
  color: var(--color-background);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-accent-subtle), var(--color-accent-subtle));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 15px var(--color-background);
  color: var(--color-background);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-background-muted)
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-background-subliminal);
  transition: background var(--transition-normal);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-svg {
  height: 2rem;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1); /* Make SVG white */
}

.nav-logo-text {
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--color-foreground);
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  transition: width var(--transition-normal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-accent-muted);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground); 
  margin: 4px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: brightness(0.35) contrast(1.2) saturate(1.1);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at center, var(--color-accent-subliminal), transparent 60%),
    linear-gradient(to bottom, 
      var(--color-background-muted) 0%,
      var(--color-background-subtle) 50%,
      var(--color-background-muted) 100%
    );
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px var(--color-background-subtle);
  animation: fadeInUp 1s ease-out;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 12px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-location {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-secondary {
  background-color: transparent;
  background-image: none;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-background);
}

.hero-social {
  display: flex;
  gap: 32px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-social a {
  color: var(--color-foreground-subtle);
  font-size: 1rem;
  opacity: 0.7;
  transition: all var(--transition-normal);
  position: relative;
  padding: 5px 0;
}

.hero-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--color-foreground);
}

.hero-social a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  transition: width var(--transition-normal);
}

.hero-social a:hover::after {
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent));
  border-radius: 3px;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.music-card {
  background: var(--color-foreground-subliminal);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-subliminal);
  border-color: var(--color-foreground-subliminal);
}

.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-foreground-subliminal), var(--color-accent-subliminal));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

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

.music-cover {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.music-card:hover .music-cover {
  transform: scale(1.03);
}

.music-info h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.music-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.music-date {
  color: var(--color-foreground-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.streaming-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; 
  margin-top: 20px;
}

.streaming-btn {
  padding: 8px 16px;
  background: var(--color-foreground-subliminal);
  border: 1px solid var(--color-foreground);
  color: var(--color-foreground);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.streaming-btn:hover {
  background: var(--color-background);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Tour Section */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.tour-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-foreground-subliminal);
  box-shadow: var(--shadow-md);
  background: var(--color-foreground-subliminal);
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.tour-date .month {
  font-size: 0.9rem;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 500;
}

.tour-date .day {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-foreground);
}

.tour-details {
  flex: 1;
}

.tour-details h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: var(--color-foreground);
}

.tour-details p {
  color: var(--color-foreground-muted);
  font-size: 0.9rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-accent-muted);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--color-foreground-muted);
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-foreground);
}

.contact-info p {
  margin-bottom: 8px;
}

/* Main Content */
.main-content {
  padding-top: 100px;
  min-height: calc(100vh - 100px); 
  position: relative;
  z-index: 1;
}

.page-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 60px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

/* Music Page */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.release-card {
  background: var(--color-foreground-subliminal);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.release-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-subliminal);
  border-color: var(--color-foreground-subliminal);
}

.release-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-foreground-subliminal), var(--color-accent-subliminal));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

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

.release-cover {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.release-card:hover .release-cover {
  transform: scale(1.03);
}

.release-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.release-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.release-date {
  color: var(--color-foreground-subtle);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.release-description {
  color: var(--color-foreground-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.tracklist {
  margin-bottom: 20px;
}

.tracklist h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-foreground);
}

.tracks {
  list-style: none;
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  border: 1px solid var(--color-foreground-subliminal);
  backdrop-filter: blur(10px);
}

.track-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-foreground-subliminal);
}

.track-item:last-child {
  border-bottom: none;
}

.track-number {
  width: 30px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
}

.track-title {
  flex: 1;
  font-size: 0.95rem;
}

.track-duration {
  color: var(--color-foreground-muted);
  font-size: 0.9rem;
}

/* Tour Page */
.tour-description {
  color: var(--color-foreground-subtle);
  font-size: 0.85rem;
  margin-top: 4px;
}

.tour-date .year {
  font-size: 0.8rem;
  color: var(--color-foreground-subtle);
}

/* Merch Page */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.merch-item {
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.merch-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-subliminal);
  border-color: var(--color-foreground-subliminal);
}

.merch-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-subliminal), var(--color-foreground-subliminal));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.merch-item:hover::before {
  opacity: 1;
}

.merch-image {
  margin-bottom: 20px;
}

.merch-image img {
  width: 100%;
  height: 280px;
  object-fit: cover; 
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.merch-item:hover .merch-image img {
  transform: scale(1.03);
}

.merch-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.merch-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.merch-description {
  color: var(--color-foreground-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.merch-price {
  font-size: 1.25rem;
  font-weight: 400; 
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 16px;
}

.merch-variants, .merch-features {
  margin-bottom: 20px;
}

.merch-variants h4, .merch-features h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-foreground);
}

.variant-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant {
  padding: 6px 12px;
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-fast);
}

.variant:hover {
  background: var(--color-foreground-subliminal);
  transform: translateY(-2px);
}

.merch-features ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--color-foreground-muted);
}

.merch-features li {
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}

.merch-features li:before {
  content: "✓";
  position: absolute;
  left: 0; 
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Videos Page */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.video-item {
  background: var(--color-foreground-subliminal);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--color-foreground-subliminal);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-subliminal);
  border-color: var(--color-foreground-subliminal);
}

.video-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-subliminal), var(--color-foreground-subliminal));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.video-item:hover::before {
  opacity: 1;
}

.video-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  background: var(--color-background-subtle);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
  box-shadow: 0 0 20px var(--color-background-subtle);
}

.video-item:hover .play-overlay {
  background: linear-gradient(135deg, var(--color-accent-muted), var(--color-accent-subtle));
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--color-background-subtle);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.video-info h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.3;
}

.video-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.video-description {
  color: var(--color-foreground-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.video-date {
  color: var(--color-foreground-subtle);
  font-size: 0.9rem;
}

/* About Page */
.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover; 
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  filter: brightness(0.95) contrast(1.05);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.genre-tags {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.genre-tag {
  background: linear-gradient(135deg, var(--color-accent-muted), var(--color-accent-subtle));
  color: var(--color-foreground);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.genre-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location {
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.bio {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--color-foreground-muted);
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  padding: 14px 28px;
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-sm);
  color: var(--color-foreground);
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-link:hover {
  border-color: var(--color-foreground-subliminal);
  color: var(--color-foreground);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-muted), var(--color-accent-subtle));
  transition: all var(--transition-normal);
  z-index: -1;
}

.social-link:hover::before {
  left: 0;
}

.band-story {
  margin-bottom: 80px;
}

.band-story h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  position: relative;
}

.band-story h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.story-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--color-foreground-muted);
}

.contact-section {
  margin-bottom: 80px;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  position: relative;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

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

.contact-item {
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--color-foreground-subliminal);
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-foreground-subliminal);
  box-shadow: var(--shadow-md);
  background: var(--color-foreground-subliminal);
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-item a {
  color: var(--color-foreground-muted);
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  position: relative;
  display: inline-block;
  padding: 2px 0;
}

.contact-item a:hover {
  color: var(--color-foreground);
  transform: translateY(-2px);
}

.contact-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  transition: width var(--transition-normal);
}

.contact-item a:hover::after {
  width: 100%;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  position: relative;
}

.gallery-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover; 
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  filter: brightness(1) contrast(1.1);
}

.section-link {
  text-align: center;
  margin-top: 40px;
}

/* Release Detail Page */
.release-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.release-artwork img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  filter: brightness(0.95) contrast(1.05);
}

.release-artwork:hover img {
  transform: scale(1.02);
}

.release-details h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.credits {
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  padding: 40px;
  border: 1px solid var(--color-foreground-subliminal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.credits h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.credits p {
  line-height: 1.6;
  color: var(--color-foreground-muted);
}

/* Show Detail Page */
.show-header {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.show-image img {
  width: 100%;
  height: 400px;
  object-fit: cover; 
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  filter: brightness(0.95) contrast(1.05);
}

.show-image:hover img {
  transform: scale(1.02);
}

.show-details h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.show-date {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 8px;
}

.show-date .month {
  font-size: 1.2rem;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}

.show-date .day {
  font-size: 2.2rem;
  font-weight: 400;
}

.show-date .year {
  font-size: 1rem;
  color: var(--color-foreground-subtle);
}

.show-location {
  font-size: 1.1rem;
  color: var(--color-foreground-muted);
  margin-bottom: 20px;
}

.show-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--color-foreground-muted);
}

.show-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.info-item h3 {
  font-size: 0.9rem;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 1rem;
  font-weight: 600;
}

.ticket-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.venue-info, .setlist-preview {
  margin-bottom: 48px;
}

.venue-info h2, .setlist-preview h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.venue-info h2::after, .setlist-preview h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.venue-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.venue-details h3 {
  font-size: 1.1rem;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 8px;
}

.setlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.setlist-section {
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--color-foreground-subliminal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.setlist-section:hover {
  transform: translateY(-5px);
  border-color: var(--color-foreground-subliminal);
  box-shadow: var(--shadow-md);
  background: var(--color-foreground-subliminal);
}

.setlist-section h3 {
  font-size: 1.2rem;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 16px;
}

.setlist-section ul {
  list-style: none;
}

.setlist-section li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-foreground-subliminal);
}

.setlist-section li:last-child {
  border-bottom: none;
}

/* Product Detail Page */
.product-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover; 
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow);
}

.product-gallery:hover .main-image img {
  transform: scale(1.02);
}

.thumbnail-images {
  display: flex;
  gap: 12px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover; 
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  opacity: 0.7;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.product-details h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.product-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 400;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color-foreground-muted);
}

.product-options {
  margin-bottom: 32px;
}

.size-selector, .color-selector, .quantity-selector {
  margin-bottom: 24px;
}

.size-selector h3, .color-selector h3, .quantity-selector h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.size-options {
  display: flex;
  gap: 8px;
}

.size-option {
  padding: 8px 16px;
  background: var(--color-foreground-subliminal);
  border: 1px solid var(--color-foreground-subliminal);
  border-radius: var(--border-radius-sm);
  color: var(--color-foreground);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.size-option.active,
.size-option:hover {
  background: linear-gradient(135deg, var(--color-accent-muted), var(--color-accent-subtle));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%; 
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.color-option.active {
  border-color: var(--color-foreground);
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--color-foreground-subliminal);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-btn {
  width: 32px;
  height: 32px; 
  background: var(--color-foreground-subliminal);
  border: 1px solid var(--color-foreground-subliminal);
  border-radius: var(--border-radius-sm);
  color: var(--color-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.quantity-btn:hover {
  background: var(--color-foreground-subliminal);
  transform: translateY(-2px);
}

.quantity {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.purchase-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.add-to-cart, .buy-now {
  flex: 1;
  min-width: 150px;
}

.product-features h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  color: var(--color-foreground-muted);
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent-muted);
}

.size-guide {
  margin-bottom: 48px;
}

.size-guide h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.size-guide h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.size-table th,
.size-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-foreground-subliminal);
}

.size-table th {
  background: var(--color-foreground-subliminal);
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}

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

/* Video Detail Page */
.video-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.video-player {
  position: relative;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay-large {
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%); 
  background: var(--color-background-subtle);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
  box-shadow: 0 0 30px var(--color-background-subtle);
}

.video-placeholder:hover .play-overlay-large {
  background: linear-gradient(135deg, var(--color-accent-muted), var(--color-accent-subtle));
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px var(--color-accent-subtle);
}

.video-details h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.video-type {
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.video-date, .video-duration {
  color: var(--color-foreground-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.video-description {
  font-size: 1.1rem;
  line-height: 1.6; 
  margin-bottom: 30px;
  color: var(--color-foreground-muted);
}

.video-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.video-credits {
  margin-bottom: 48px;
}

.video-credits h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.video-credits h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.credit-item {
  background: var(--color-foreground-subliminal);
  border-radius: var(--border-radius-md);
  padding: 25px;
  border: 1px solid var(--color-foreground-subliminal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.credit-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-foreground-subliminal);
  box-shadow: var(--shadow-md);
  background: var(--color-foreground-subliminal);
}

.credit-item h3 {
  font-size: 1rem;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 8px;
}

.credit-item p {
  color: var(--color-foreground-muted);
}

.behind-scenes {
  margin-bottom: 48px;
}

.behind-scenes h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--color-foreground), var(--color-foreground-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.behind-scenes h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 3px;
}

.behind-scenes p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--color-foreground-muted);
}

.bts-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.bts-image img {
  width: 100%;
  height: 150px;
  object-fit: cover; 
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.bts-image:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Footer Styles */
.footer {
  background-color: var(--color-background-muted);
  backdrop-filter: blur(12px);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-foreground-subliminal);
  position: relative;
  margin-top: 100px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-muted), 
    var(--color-accent-subtle), 
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h3.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-section h4.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-foreground);
  position: relative;
  display: inline-block;
}

.footer-section h4.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 2px;
}

.footer-bio {
  color: var(--color-foreground-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a, 
.footer-social a, 
.footer-contact a {
  color: var(--color-foreground-muted);
  transition: all var(--transition-normal);
  position: relative;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover, 
.footer-social a:hover, 
.footer-contact a:hover {
  color: var(--color-foreground);
  transform: translateY(-2px);
}

.footer-links a::after, 
.footer-social a::after, 
.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  transition: width var(--transition-normal);
}

.footer-links a:hover::after, 
.footer-social a:hover::after, 
.footer-contact a:hover::after {
  width: 100%;
}

.footer-social, 
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-foreground-subliminal);
}

.footer-bottom p {
  color: var(--color-foreground-subtle);
  font-size: 0.9rem;
}

/* Footer Styles */
.footer {
  background-color: var(--color-background-muted);
  backdrop-filter: blur(12px);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-foreground-subliminal);
  position: relative;
  margin-top: 100px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-muted), 
    var(--color-accent-subtle), 
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h3.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-section h4.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-foreground);
  position: relative;
  display: inline-block;
}

.footer-section h4.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  border-radius: 2px;
}

.footer-bio {
  color: var(--color-foreground-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a, 
.footer-social a, 
.footer-contact a {
  color: var(--color-foreground-muted);
  transition: all var(--transition-normal);
  position: relative;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover, 
.footer-social a:hover, 
.footer-contact a:hover {
  color: var(--color-foreground);
  transform: translateY(-2px);
}

.footer-links a::after, 
.footer-social a::after, 
.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent-muted), var(--color-accent-subtle));
  transition: width var(--transition-normal);
}

.footer-links a:hover::after, 
.footer-social a:hover::after, 
.footer-contact a:hover::after {
  width: 100%;
}

.footer-social, 
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-foreground-subliminal);
}

.footer-bottom p {
  color: var(--color-foreground-subtle);
  font-size: 0.9rem;
}

/* Merch Link Styles */
.merch-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.release-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container { 
    padding: 0 16px; 
  }
  
  .section {
    padding: 40px 0;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-background-subtle);
    backdrop-filter: blur(12px);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid var(--color-foreground-subliminal);
  }
  
  .nav-links-active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-social {
    flex-wrap: wrap;
  }
  
  .music-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .page-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }
  
  .releases-grid,
  .merch-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .about-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-content h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .release-header,
  .show-header,
  .product-header,
  .video-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .release-details h1,
  .show-details h1,
  .product-details h1,
  .video-details h1 { 
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
  
  .purchase-actions {
    flex-direction: column;
  }
  
  .ticket-actions,
  .video-actions {
    flex-direction: column;
  }
  
  .show-info {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .venue-details,
  .credits-grid {
    grid-template-columns: 1fr;
  }
  
  .setlist {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section h4.footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social, 
  .footer-contact {
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section h4.footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social, 
  .footer-contact {
    align-items: center;
  }
}

/* Homepage Styles */
.homepage-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.homepage-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
}

.homepage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
  transform: translateY(0px);
}

.fallback-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background);
}

.bottom-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.5rem 1.25rem;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .bottom-cards {
    padding: 1.25rem;
  }
  
  .cards-container {
    flex-direction: row;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: show;
    padding-bottom: 1.25rem;
  }
  
  .cards-container:has(.release-card:nth-child(1):last-child) {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .cards-container {
    max-width: 556px;
  }
}

.release-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: color-mix(in srgb, var(--color-foreground) 10%, transparent);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  overflow: hidden;
  width: 100%;
  min-width: 300px;
}

.release-card:hover {
  background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .release-card {
    width: calc(50% - 5px);
    background: color-mix(in srgb, var(--color-foreground) 10%, transparent);
  }
  
  .release-card:hover {
    background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
  }
}

@media (min-width: 1024px) {
  .release-card {
    width: calc(33.333333% - 6px);
    max-width: 556px;
  }
}

.release-thumbnail {
  width: 7rem;
  height: 7rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .release-thumbnail {
    width: 120px;
    height: 120px;
  }
}

.release-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  flex: 1;
  min-width: 0;
}

.release-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.2;
  flex: 1;
}

.release-action {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  mix-blend-mode: plus-lighter;
}

.release-card:hover .release-action {
  opacity: 1;
}

@media (min-width: 640px) {
  .release-action {
    opacity: 0.5;
  }
  
  .release-card:hover .release-action {
    opacity: 1;
  }
}

.arrow-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
  display: inline-block;
}

.no-content {
  text-align: center;
  color: var(--color-foreground);
  padding: 2rem;
  opacity: 0.7;
}

.no-content p {
  margin: 0;
  font-size: 1rem;
}

/* Navigation Styles */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--color-background) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.container {
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-foreground);
  font-weight: 600;
  font-size: 1.125rem;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
  width: 40px;
  height: 40px;
}

.fallback-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-family: var(--font-heading);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-foreground);
  margin: 2px 0;
  transition: 0.3s;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--color-background) 95%, transparent);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 2rem;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-foreground);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-link {
  color: var(--color-foreground);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
  transition: opacity 0.3s ease;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

.mobile-menu-link:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Footer Styles */
.footer {
  background: color-mix(in srgb, var(--color-background) 25%, transparent);
  backdrop-filter: blur(15px);
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 5%, transparent);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--color-foreground);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-section p {
  color: var(--color-foreground);
  opacity: 0.7;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-foreground);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.footer-bottom p {
  color: var(--color-foreground);
  opacity: 0.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Gradient overlays to match target aesthetic */
.homepage-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 175px;
  background: linear-gradient(0deg, 
    hsla(0,0%,0%,0) 0%, 
    hsla(0,0%,0%,0.005102040825) 9.22%, 
    hsla(0,0%,0%,0.0193877551) 18.76%, 
    hsla(0,0%,0%,0.041326530594999994) 28.48%, 
    hsla(0,0%,0%,0.06938775511499999) 38.19%, 
    hsla(0,0%,0%,0.102040816325) 47.75%,
    hsla(0,0%,0%,0.13775510203) 56.99%, 
    hsla(0,0%,0%,0.175) 65.75%, 
    hsla(0,0%,0%,0.21224489796999998) 73.87%, 
    hsla(0,0%,0%,0.247959183675) 81.18%, 
    hsla(0,0%,0%,0.280612244885) 87.52%, 
    hsla(0,0%,0%,0.308673469405) 92.74%, 
    hsla(0,0%,0%,0.33061224489999996) 96.66%, 
    hsla(0,0%,0%,0.344897959175) 99.14%, 
    hsla(0,0%,0%,0.35) 100%
  );
  pointer-events: none;
  z-index: 5;
}

@media (min-width: 768px) {
  .homepage-container::after {
    display: none;
  }
  
  .homepage-container::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 200px;
    background: linear-gradient(180deg, 
      hsla(0,0%,0%,0) 0%,
      hsla(0,0%,0%,0) 0%,
      hsla(0,0%,0%,0.0087463557) 9.22%,
      hsla(0,0%,0%,0.0332361516) 18.76%,
      hsla(0,0%,0%,0.07084548101999999) 28.48%,
      hsla(0,0%,0%,0.11895043733999999) 38.19%,
      hsla(0,0%,0%,0.1749271137) 47.75%,
      hsla(0,0%,0%,0.23615160348) 56.99%,
      hsla(0,0%,0%,0.3) 65.75%,
      hsla(0,0%,0%,0.36384839651999995) 73.87%,
      hsla(0,0%,0%,0.4250728863) 81.18%,
      hsla(0,0%,0%,0.48104956266) 87.52%,
      hsla(0,0%,0%,0.52915451898) 92.74%,
      hsla(0,0%,0%,0.5667638483999999) 96.66%,
      hsla(0,0%,0%,0.5912536442999999) 99.14%,
      hsla(0,0%,0%,0.6) 100%
    );
    pointer-events: none;
    z-index: 5;
  }
}

/* Animation for nav toggle */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.footer-bandweb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgb(var(--color-foreground-muted));
      margin-top: 0.5rem;
      letter-spacing: normal;
      opacity: 0.5;
      transition: opacity 0.3s ease;
      text-decoration: none;
      width: 100%;
      
    }

    .footer-bandweb:hover {
      opacity: 1;
    }

    .footer-bandweb-icon {
      height: 1.3rem;
      width: 3.6875rem;
      align-self: center;
      border-radius: 0.375rem;
      display: inline-block;
      fill: currentColor;
    }

    .footer-bandweb-text {
      width: 4.125rem;
      font-size: 0.75rem;
      text-transform: lowercase;
      line-height: 0.875rem;
    }

    .footer-bandweb-text-brand {
      letter-spacing: 0.025em;
    }