/* Concerts Page - Modern Professional Design */

/* ===== SMOOTH SCROLL ANIMATIONS (2026 UX) ===== */
@media (prefers-reduced-motion: no-preference) {
  .up-row,
  .year-block,
  .stats-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .up-row:nth-child(1) { animation-delay: 0.1s; }
  .up-row:nth-child(2) { animation-delay: 0.2s; }
  .up-row:nth-child(3) { animation-delay: 0.3s; }

  .stats-card:nth-child(1) { animation-delay: 0.1s; }
  .stats-card:nth-child(2) { animation-delay: 0.2s; }
  .stats-card:nth-child(3) { animation-delay: 0.3s; }
}

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* ===== LAYOUT ===== */
/* CRITICAL: Remove main_content padding to eliminate gap between navbar and search */
#main_content:has(.concerts-layout) {
  padding-top: 0 !important;
}

.concerts-layout {
  background: transparent;
  min-height: 100vh;
  position: relative;
}

/* ===== HEADER ===== */
.page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem 0 2rem;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 20;
  /* More transparent to show background */
}

/* ===== COMPACT STATS (Top) ===== */
.concerts-stats-compact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem 1.5rem;
  position: relative;
  z-index: 19;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Transparent - let background show through */
}

.stats-compact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-compact {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.stat-compact-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.stat-compact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-compact-grid {
    gap: 1rem 1.5rem;
  }

  .stat-compact-number {
    font-size: 1.4rem;
  }

  .stat-compact-label {
    font-size: 0.8rem;
  }
}

/* ===== SCROLL TO CONTACT CTA ===== */
.scroll-to-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  color: #d4af37;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 25px;
  background: rgba(212, 175, 55, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}

.scroll-to-contact:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  transform: translateY(2px);
}

.scroll-to-contact .scroll-arrow {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 0.5rem;
  display: inline-block;
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== BACK TO TOP BUTTON ===== */
.scroll-to-top-btn {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  z-index: 99999 !important;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #d4af37 !important;
  border: none !important;
  border-radius: 50%;
  color: #0a0a0a !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn .back-arrow {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.scroll-to-top-btn.visible,
.scroll-to-top-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.scroll-to-top-btn.visible:hover {
  color: #fff;
  border-color: #d4af37;
  background: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Gradient text uniformato - ora usa .page-title-gradient da base.css */
.page-title {
  font-size: 4rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Claim gestito da base.css (.page-claim) */

/* ===== STATS HERO ===== */
.concerts-stats-hero {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 15;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  animation: statsSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* ===== COLLABORATIONS SECTION (smart & fica) ===== */
.collaborations-section {
  max-width: 1400px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 14;
}

.collaborations-container {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 26, 0.3) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.collaborations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.collaborations-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collaborations-title i {
  color: #d4af37;
  font-size: 1.5rem;
}

.repertoire-link-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(212, 175, 55, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.05);
}

.repertoire-link-small:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  transform: translateX(4px);
}

.repertoire-link-small i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.repertoire-link-small:hover i {
  transform: translateX(4px);
}

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

.collab-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collab-category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.collab-category-title i {
  font-size: 1rem;
}

.collab-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.collab-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.collab-item:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.collab-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.3s;
}

.collab-item:hover .collab-name {
  color: #ffffff;
}

.collab-count {
  color: rgba(212, 175, 55, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  transition: all 0.3s;
}

.collab-item:hover .collab-count {
  background: rgba(212, 175, 55, 0.25);
  color: #d4af37;
  transform: scale(1.05);
}

/* Responsive collaborations */
@media (max-width: 768px) {
  .collaborations-section {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }

  .collaborations-container {
    padding: 1.75rem 1.5rem;
  }

  .collaborations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .collaborations-title {
    font-size: 1.5rem;
  }

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

  .repertoire-link-small {
    align-self: flex-end;
  }
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-sublabel {
  font-size: 0.9rem;
  color: rgba(212, 175, 55, 0.8);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.badge-upcoming {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  }
}

.badge-year {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.up-title-row,
.concert-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== GRID LAYOUT ===== */
.layout-grid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  position: relative;
  z-index: 10;
}

.left-col {
  width: 100%;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem;
}

@media (min-width: 1200px) {
  .left-col {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* ===== HERO AS FIXED BACKGROUND ===== */
.right-hero {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 800px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .right-hero {
    display: none;
  }
}

  .hero-concerts {
    height: 100%;
  }

  .hero-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% var(--concert-hero-focus-y, 50%);
    transform: scale(var(--concert-hero-zoom, 1));
    filter: brightness(0.95) contrast(1.05);
  }
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

/* ===== UPCOMING CONCERTS ===== */
#upcoming_section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.upcoming-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .upcoming-table {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
}

.up-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.up-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d4af37 0%, #f0d478 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.up-row:hover {
  transform: translateX(6px) translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 175, 55, 0.1);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.up-row:hover::before {
  opacity: 1;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Poster NASCOSTO SOLO nella pagina concerts (tolto per carico visivo) */
.concerts-layout .up-poster {
  display: none;
}

.up-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem;
  min-width: 100px;
}

.up-month {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.up-day {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.up-main {
  flex: 1;
  min-width: 0;
}

.up-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.up-row:hover .up-title {
  color: #d4af37;
}

.up-place,
.up-line {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0;
}

.up-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 1.1rem;
}

/* ===== PAST CONCERTS ARCHIVE ===== */
#past_section {
  margin-bottom: 3rem;
}

@media (min-width: 1200px) {
  #past_section {
    position: fixed;
    left: 20px;
    top: 120px;
    bottom: 20px;
    width: 280px;
    margin: 0;
    overflow-y: auto;
    z-index: 5;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
  }

  #upcoming_section {
    margin-bottom: 0;
  }
}

.year-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.year-pill {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.year-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.year-pill[aria-selected="true"] {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border-color: #d4af37;
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.year-content {
  display: none;
}

.year-content[aria-selected="true"] {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

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

.concerts-year-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concert-item {
  animation: slideIn 0.4s ease-out backwards;
  animation-delay: calc(var(--item-index, 0) * 0.05s);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.concert-block {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.concert-block:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 175, 55, 0.15);
  background: rgba(26, 26, 26, 0.8);
}

/* Layout metà superiore: poster sx + info dx */
.concert-top-section {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.concert-thumb-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a1a;
  border-radius: 12px;
}

.concert-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.concert-thumb-link:hover .concert-poster {
  transform: scale(1.05);
}

@media (min-width: 1200px) {
  .concert-thumb-link {
    aspect-ratio: 2/3;
  }
}

.concert-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Metà inferiore: programma a tutta larghezza */
.concert-bottom-section {
  padding: 1.5rem;
  flex: 1;
}

.concert-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.concert-block:hover .concert-title {
  color: #d4af37;
}

.concert-date,
.concert-place {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.25rem 0;
}

@media (min-width: 1200px) {
  .concert-top-section {
    padding: 1rem;
  }

  .concert-bottom-section {
    padding: 1rem;
  }

  .concert-title {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
  }

  .concert-date,
  .concert-place {
    font-size: 0.8rem;
  }
}

.concert-details {
  margin: 0;
}

@media (min-width: 1200px) {
  #past_section .concert-details {
    display: none;
  }

  #past_section .concert-actions {
    display: none;
  }
}

.details-summary {
  cursor: pointer;
  color: #d4af37;
  font-weight: 600;
  font-size: 0.9rem;
  list-style: none;
  transition: color 0.2s ease;
}

.details-summary:hover {
  color: #f0d478;
}

.concert-extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.concert-program pre {
  font-family: inherit;
  white-space: pre-wrap;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.concert-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concert-facts li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

/* ===== LIGHTBOX ===== */
#concert_lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  padding: 2rem;
  overflow-y: auto;
}

#concert_lightbox[aria-hidden="false"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.concert-lightbox-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.concert-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  line-height: 1;
}

.concert-lightbox-close:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  color: #d4af37;
  transform: rotate(90deg);
}

.concert-lightbox-body {
  padding: 2rem;
}

.concert-lightbox-iframe {
  width: 100%;
  height: 80vh;
}

.concert-lightbox-iframe iframe {
  width: 100%;
  height: 100%;
}

.concert-lightbox-poster-view {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  max-height: none;
  align-items: start;
}

.concert-lightbox-img {
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 0;
}

.concert-lightbox-img img {
  width: 100%;
  height: auto;
  display: block;
}

.concert-lightbox-info {
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  overflow-y: auto;
  max-height: 70vh;
}

.concert-lightbox-info h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: #d4af37;
}

.concert-lightbox-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.concert-lightbox-info ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.concert-lightbox-info li {
  padding: 0.25rem 0;
  line-height: 1.5;
}

.concert-lightbox-info strong {
  color: #d4af37;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-header {
    padding: 1rem 1rem 0 1rem;
  }

  /* Titoli gestiti da base.css */

  .layout-grid {
    padding: 0 1rem 3rem 1rem;
  }

  .upcoming-table {
    grid-template-columns: 1fr;
  }

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

  .up-date {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: -0.5rem 0 0.5rem 0;
  }

  .up-main {
    padding: 0;
  }

  .up-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .up-place,
  .up-line {
    font-size: 1rem;
    margin: 0.5rem 0;
  }

  .up-cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin-top: 1rem;
  }

  .up-cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .left-col {
    padding: 2rem 1.5rem;
  }

  .concert-lightbox-poster-view {
    grid-template-columns: 1fr;
  }

  /* Su mobile mantieni layout verticale per concerti passati */
  .concert-top-section {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-bottom: none;
  }

  .concert-bottom-section {
    padding: 1rem 1rem 1.5rem 1rem;
  }

  .concert-thumb-link {
    border-radius: 12px 12px 0 0;
  }

  .archive-view-toggle {
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }

  .view-toggle-btn {
    width: 100%;
  }

  .venue-pills,
  .collaborator-pills {
    gap: 0.5rem;
  }

  .venue-pill,
  .collaborator-pill {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* ===================== VIEW TOGGLE ===================== */

.archive-view-toggle {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem auto 3rem auto;
  max-width: 1000px;
  padding: 0 2rem;
  position: relative;
  z-index: 14;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.view-toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.view-toggle-btn:hover::before {
  left: 100%;
}

.view-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.view-toggle-btn.active {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border-color: #d4af37;
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.view-toggle-btn i {
  font-size: 1.2rem;
}

/* ===================== ARCHIVE VIEWS ===================== */

.archive-view {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.archive-view:not([hidden]) {
  display: block;
}

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

/* ===================== VENUE PILLS ===================== */

.venue-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.venue-pill {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 0.95rem;
}

.venue-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.venue-pill[aria-selected="true"] {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border-color: #d4af37;
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.venue-content {
  display: none;
}

.venue-content[aria-selected="true"] {
  display: block;
}

/* ===================== COLLABORATOR PILLS ===================== */

.collaborator-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.collaborator-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 0.95rem;
}

.collaborator-pill i {
  opacity: 0.7;
  font-size: 0.9rem;
}

.collaborator-pill.orchestra {
  border-left: 3px solid rgba(100, 150, 255, 0.5);
}

.collaborator-pill.soloist {
  border-left: 3px solid rgba(255, 100, 150, 0.5);
}

.collaborator-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.collaborator-pill:hover i {
  opacity: 1;
}

.collaborator-pill[aria-selected="true"] {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border-color: #d4af37;
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.collaborator-pill[aria-selected="true"] i {
  opacity: 1;
  color: #0a0a0a;
}

.collaborator-content {
  display: none;
}

.collaborator-content[aria-selected="true"] {
  display: block;
}

/* ========================================
   Concert Card Compact Styles
   ======================================== */

/* Grid per le card */
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1; /* Sotto i divisori anno (z-index: 10) */
}

/* Main content area */
.concerts-main-content {
  position: relative;
  z-index: 1; /* Sotto i divisori anno */
}

/* Results Header with View Switcher */
.concerts-results-header {
  max-width: 1400px;
  margin: 0 auto 2rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.results-count {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin: 0;
}

.results-count #visible_count {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 700;
}

/* View Mode Switcher */
.view-mode-switcher {
  display: flex;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.6);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.view-mode-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.view-mode-btn i {
  font-size: 1rem;
  transition: color 0.3s;
}

.view-mode-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(212, 175, 55, 0.1);
}

.view-mode-btn.active {
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.view-mode-btn.active i {
  color: #000;
}

/* Responsive view switcher */
@media (max-width: 768px) {
  .view-mode-switcher {
    display: none;
  }

  /* Reset list view to grid on mobile */
  .concerts-main-content[data-view="list"] .concerts-grid {
    display: grid;
    flex-direction: unset;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .concerts-main-content[data-view="list"] .concert-card-compact {
    display: block;
    grid-template-columns: unset;
    padding: 0;
  }

  .concerts-main-content[data-view="list"] .concert-card-poster {
    aspect-ratio: 3/4;
    max-height: none;
  }

  .concerts-main-content[data-view="list"] .concert-card-content {
    padding: 1rem;
  }

  /* Reset timeline view to grid on mobile */
  .concerts-main-content[data-view="timeline"] .year-section {
    padding-left: 0;
  }

  .concerts-main-content[data-view="timeline"] .year-section::before {
    display: none;
  }

  .concerts-main-content[data-view="timeline"] .year-number::before {
    display: none;
  }

  .concerts-main-content[data-view="timeline"] .concerts-grid {
    display: grid;
    flex-direction: unset;
    padding-left: 0;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .concerts-main-content[data-view="timeline"] .concert-card-compact {
    display: block;
    grid-template-columns: unset;
    padding: 0;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-compact::before {
    display: none;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-poster {
    aspect-ratio: 3/4;
    max-height: none;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-content {
    padding: 1rem;
  }

  .concerts-main-content[data-view="timeline"] .year-header-sticky {
    position: relative;
    top: 0;
    margin-left: 0;
    padding-left: 0.5rem;
  }
}

/* Card base - GLASSMORPHISM semi-trasparente */
.concert-card-compact {
  background: rgba(26, 26, 26, 0.7); /* Semi-trasparente glassmorphism */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  /* Nessun z-index - così le card passano SOTTO i divisori anno (z-index: 10) */
}

.concert-card-compact:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(26, 26, 26, 0.92);
}

/* Poster */
.concert-card-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
}

.concert-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concert-card-compact:hover .concert-card-poster img {
  transform: scale(1.05);
}

/* Overlay sul poster */
.concert-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1rem;
}

.concert-card-compact:hover .concert-card-overlay {
  opacity: 1;
}

/* Bottone view */
.concert-card-view-btn {
  background: var(--accent-color, #d4af37);
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}

.concert-card-view-btn:hover {
  transform: scale(1.05);
}

/* Contenuto card */
.concert-card-content {
  padding: 1rem;
}

.concert-card-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.concert-card-year {
  background: var(--accent-color, #d4af37);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.concert-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary, #ffffff);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta info */
.concert-card-meta {
  margin-bottom: 0.75rem;
}

.concert-card-date,
.concert-card-venue {
  font-size: 0.8rem;
  color: var(--text-meta, rgba(255, 255, 255, 0.7));
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.concert-card-date i,
.concert-card-venue i {
  color: var(--accent-color, #d4af37);
  font-size: 0.7rem;
}

/* Collaboratori */
.concert-card-collaborators {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.concert-card-orchestra,
.concert-card-soloists {
  font-size: 0.75rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  margin: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.3;
}

.concert-card-orchestra i,
.concert-card-soloists i {
  color: var(--accent-color, #d4af37);
  font-size: 0.65rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Actions */
.concert-card-actions {
  margin-top: 0.75rem;
}

.concert-card-youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-color, #d4af37);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.concert-card-youtube-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-color, #d4af37);
  text-decoration: none;
}

/* ========================================
   JOURNEY DISCOVERY SECTION - BOTTOM STATS
   Best Practices 2026: Progressive Engagement
   ======================================== */

.journey-discovery-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.6) 100%);
  padding: 6rem 2rem 4rem 2rem;
  margin-top: 4rem;
}

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

.journey-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-claim {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

.journey-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.journey-stat-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.journey-stat-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
.journey-stat-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
.journey-stat-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }
.journey-stat-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.7s forwards; }
.journey-stat-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.8s forwards; }

.journey-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.2);
}

.journey-stat-icon {
  font-size: 2rem;
  color: var(--accent-color, #d4af37);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.journey-stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.journey-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.journey-stat-sublabel {
  font-size: 0.8rem;
  color: rgba(212, 175, 55, 0.7);
  margin-top: 0.5rem;
}

/* CTA Button - Engagement Funnel */
.journey-cta {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 1s forwards;
}

.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.journey-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.journey-cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  text-decoration: none;
}

.journey-cta-btn:hover::before {
  left: 100%;
}

.journey-cta-btn i {
  transition: transform 0.3s;
}

.journey-cta-btn:hover i {
  transform: translateX(4px);
}

/* Contact CTA */
.journey-contact {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.journey-contact-text {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
}

.journey-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #d4af37;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.journey-contact-link:hover {
  background: #f0d478;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.journey-contact-link i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .journey-stat-number {
    font-size: 2.5rem;
  }
  
  .journey-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .journey-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   DISCOVERY CARDS - Cross-Page Engagement
   ======================================== */

.discovery-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(var(--card-color-rgb, 212, 175, 55), 0.05) 100%
  );
  border: 2px solid var(--card-color, #d4af37);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.discovery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--card-color, #d4af37) 0%,
    transparent 100%
  );
}

.discovery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 0 1px var(--card-color, #d4af37);
}

.discovery-card-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.discovery-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px var(--card-color, #d4af37));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.discovery-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--card-color, #d4af37);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.discovery-card-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.discovery-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--card-color, #d4af37);
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(var(--card-color-rgb, 212, 175, 55), 0.4);
}

.discovery-card-cta:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(var(--card-color-rgb, 212, 175, 55), 0.6);
}

.discovery-card-cta i {
  transition: transform 0.3s;
}

.discovery-card-cta:hover i {
  transform: translateX(4px);
}

.discovery-card-progress {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.discovery-card-progress strong {
  color: var(--card-color, #d4af37);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
  .discovery-card {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .discovery-card-icon {
    font-size: 2.5rem;
  }

  .discovery-card-title {
    font-size: 1.25rem;
  }

  .discovery-card-text {
    font-size: 0.9375rem;
  }

  .discovery-card-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ========================================
   SCROLL TRACKER - Dynamic Engagement Bar
   ======================================== */

.concerts-scroll-tracker {
  position: sticky;
  top: 0;
  z-index: 98;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracker-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.tracker-left,
.tracker-center,
.tracker-right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tracker-year {
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.5px;
}

.tracker-stats {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.tracker-center {
  text-align: center;
}

.tracker-progress-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.tracker-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.tracker-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d4af37 0%, #f0d478 100%);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.tracker-right {
  align-items: flex-end;
}

.tracker-next {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.tracker-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.tracker-link {
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.8);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 600;
}

.tracker-link:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .tracker-content {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tracker-left,
  .tracker-center,
  .tracker-right {
    align-items: center;
    text-align: center;
  }

  .tracker-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .concerts-scroll-tracker {
    padding: 0.5rem 1rem;
  }

  .tracker-year {
    font-size: 0.875rem;
  }

  .tracker-stats,
  .tracker-progress-text,
  .tracker-next {
    font-size: 0.75rem;
  }

  .tracker-progress {
    height: 4px;
  }

  .tracker-links {
    display: none;
  }
}

/* ========================================
   SEARCH BAR STICKY - Intelligent Search 2026
   ======================================== */

.concerts-search-sticky {
  position: sticky;
  z-index: 99;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: none;
  padding: 0.875rem 2rem 1rem 2rem;
  margin-top: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

/* Placeholder per evitare salti quando search bar diventa fixed */
.search-placeholder {
  pointer-events: none;
}

/* Desktop: top a 0 (subito sotto contenuto) */
@media (min-width: 769px) {
  .concerts-search-sticky {
    top: 0;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.7);
  font-size: 1.1rem;
  pointer-events: none;
  transition: color 0.3s;
}

.search-input {
  width: 100%;
  padding: 0.75rem 3.25rem 0.75rem 3rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
  border-color: #d4af37;
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1),
              0 8px 24px rgba(212, 175, 55, 0.2);
}

.search-input:focus ~ .search-icon {
  color: #d4af37;
}

.search-clear-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: none;
  color: #d4af37;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.search-clear-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.search-results-count {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  animation: fadeIn 0.3s ease-out;
}

.search-results-count #search_count_number {
  font-size: 1.1rem;
  margin-right: 0.25rem;
}

/* Autocomplete Dropdown */
/* Helper Text */
.search-helper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(212, 175, 55, 0.03);
  border-radius: 6px;
  margin-top: 0.625rem;
}

.search-helper i {
  color: rgba(212, 175, 55, 0.8);
  font-size: 1rem;
}

.search-autocomplete {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 2rem;
  right: 2rem;
  max-width: calc(1400px - 4rem);
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.autocomplete-section {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.autocomplete-section-title {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.autocomplete-section-title i {
  font-size: 0.9rem;
}

.autocomplete-item {
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.autocomplete-item:hover,
.autocomplete-item.active {
  background: rgba(212, 175, 55, 0.15);
}

.autocomplete-item-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.autocomplete-item-title {
  font-weight: 600;
  color: #ffffff;
}

.autocomplete-item-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.autocomplete-item-match {
  background: rgba(212, 175, 55, 0.3);
  color: #d4af37;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-weight: 600;
}

.autocomplete-item-badge {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.autocomplete-no-results {
  padding: 2rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  /* Fix per sticky: resetta overflow su html/body che interferisce */
  html:has(.concerts-layout),
  body:has(.concerts-layout) {
    overflow-x: hidden;
    overflow-y: visible !important;
  }

  .concerts-search-sticky {
    position: sticky;
    /* top viene impostato da JavaScript basandosi sull'altezza reale della navbar */
    top: 48px; /* fallback se JS non carica */
    padding: 0.75rem 1.5rem;
    margin-top: 0;
    z-index: 100;
  }

  .search-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-helper {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
    display: none;
  }

  .search-input-wrapper {
    min-width: 100%;
  }

  .search-input {
    font-size: 0.9rem;
    padding: 0.75rem 3rem 0.75rem 2.75rem;
  }

  .search-autocomplete {
    left: 1rem;
    right: 1rem;
    max-height: 300px;
  }

  .year-header-sticky {
    padding: 0.5rem 1.5rem;
    margin: 0 -1.5rem 1rem -1.5rem;
    /* top viene impostato da JavaScript basandosi sulle altezze reali */
    top: 100px; /* fallback se JS non carica */
    z-index: 99;
  }

  .year-number {
    font-size: 1.5rem;
  }

  .year-count {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
  }
}

/* ========================================
   SIDEBAR COLLASSABILE - Mobile First 2026
   ======================================== */

/* Bottone filtri sticky in alto */
.filters-toggle-btn {
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 100;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-toggle-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.filters-toggle-btn i {
  transition: transform 0.3s;
}

.filters-toggle-btn.active i {
  transform: rotate(180deg);
}

/* Sidebar nascosta di default */
.archive-filters-sidebar {
  position: fixed;
  left: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  padding: 120px 1.5rem 2rem 1.5rem;
  overflow-y: auto;
  z-index: 99;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.archive-filters-sidebar.open {
  left: 0;
}

/* Overlay quando sidebar aperta */
.filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.filters-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Layout concerti - FULL WIDTH senza sidebar */
.concerts-layout {
  display: block;
  position: relative;
}

.concerts-main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

/* Responsive */
@media (min-width: 1400px) {
  .filters-toggle-btn {
    left: calc((100vw - 1400px) / 2 + 20px);
  }
}

@media (max-width: 768px) {
  .filters-toggle-btn {
    top: 80px;
    left: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .archive-filters-sidebar {
    width: 280px;
    left: -300px;
    padding-top: 100px;
  }
}

/* ========================================
   YEAR TIMELINE - Divisori Anno con Sticky Header
   Best Practices 2026: Scrollytelling
   ======================================== */

.year-section {
  position: relative;
  margin-bottom: 4rem;
}

.year-header-sticky {
  position: sticky;
  z-index: 10;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(240, 212, 120, 0.15) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.625rem 2rem;
  margin: 0 -2rem 1.5rem -2rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: background 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

/* Desktop: top calcolato dalla variabile CSS */
@media (min-width: 769px) {
  .year-header-sticky {
    top: var(--search-height, 185px);
  }
}

.year-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.year-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: -0.02em;
  line-height: 1;
}

.year-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.875rem;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50px;
}

/* Animazione quando header diventa sticky */
.year-header-sticky.is-sticky {
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

/* Grid concerti dell'anno */
.year-grid {
  animation: fadeInYear 0.6s ease-out;
}

/* ========================================
   VIEW MODES - List & Timeline
   ======================================== */

/* LIST VIEW */
.concerts-main-content[data-view="list"] .concerts-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concerts-main-content[data-view="list"] .concert-card-compact {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.5rem;
}

.concerts-main-content[data-view="list"] .concert-card-poster {
  aspect-ratio: 3/4;
  max-height: 160px;
}

.concerts-main-content[data-view="list"] .concert-card-content {
  padding: 0;
}

.concerts-main-content[data-view="list"] .concert-card-header {
  margin-bottom: 0.5rem;
}

.concerts-main-content[data-view="list"] .concert-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.concerts-main-content[data-view="list"] .concert-card-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.concerts-main-content[data-view="list"] .concert-card-collaborators {
  border-top: none;
  padding-top: 0;
  margin-top: 0.5rem;
}

.concerts-main-content[data-view="list"] .concert-card-overlay {
  opacity: 0;
}

/* TIMELINE VIEW */
.concerts-main-content[data-view="timeline"] .year-section {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.concerts-main-content[data-view="timeline"] .year-section::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    #d4af37 0%,
    rgba(212, 175, 55, 0.5) 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
}

.concerts-main-content[data-view="timeline"] .year-header-sticky {
  position: relative;
  top: 0;
  margin-left: -3rem;
  padding-left: 3rem;
}

.concerts-main-content[data-view="timeline"] .year-number::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 1),
              0 4px 12px rgba(212, 175, 55, 0.4);
}

.concerts-main-content[data-view="timeline"] .concerts-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 1rem;
}

.concerts-main-content[data-view="timeline"] .concert-card-compact {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.concerts-main-content[data-view="timeline"] .concert-card-compact::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 2rem;
  width: 12px;
  height: 12px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.concerts-main-content[data-view="timeline"] .concert-card-poster {
  aspect-ratio: 3/4;
  max-height: 140px;
}

.concerts-main-content[data-view="timeline"] .concert-card-content {
  padding: 0;
}

.concerts-main-content[data-view="timeline"] .concert-card-title {
  font-size: 1.15rem;
}

/* Responsive timeline */
@media (max-width: 768px) {
  .concerts-main-content[data-view="timeline"] .year-section {
    padding-left: 2rem;
  }

  .concerts-main-content[data-view="timeline"] .year-section::before {
    left: 0.5rem;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-compact::before {
    left: -1.5rem;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-compact {
    grid-template-columns: 1fr;
  }

  .concerts-main-content[data-view="timeline"] .concert-card-poster {
    max-height: none;
  }
}

/* Responsive list */
@media (max-width: 768px) {
  .concerts-main-content[data-view="list"] .concert-card-compact {
    grid-template-columns: 1fr;
  }
}

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

/* Responsive year headers - already handled in main responsive section above */
