@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #141313;
  --surface-secondary: #201f1f;
  --surface-bright: #3a3939;
  --paper: rgba(58, 57, 57, 0.8);
  --ink: #E5E2CF;
  --muted: #a0a0a0;
  --accent: #DD0B02;
  --accent-soft: rgba(221, 11, 2, 0.2);
  --artist: #2d5b4a;
  --artist-soft: #d8e6df;
  --promoter: #6f3a63;
  --promoter-soft: #ead9e6;
  --line: rgba(229, 226, 207, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(58, 57, 57, 0.6);
  --glass-border: rgba(229, 226, 207, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --font-display: "Space Grotesk", "Nasalization", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Plus Jakarta Sans", "Aptos", "Segoe UI", Tahoma, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(221, 11, 2, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(221, 11, 2, 0.06) 0%, transparent 50%),
    repeating-linear-gradient(30deg, transparent, transparent 40px, rgba(229, 226, 207, 0.02) 40px, rgba(229, 226, 207, 0.02) 80px),
    repeating-linear-gradient(60deg, transparent, transparent 4px, rgba(229, 226, 207, 0.015) 4px, rgba(229, 226, 207, 0.015) 8px),
    repeating-linear-gradient(-60deg, transparent, transparent 4px, rgba(229, 226, 207, 0.015) 4px, rgba(229, 226, 207, 0.015) 8px),
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(229, 226, 207, 0.015) 8px, rgba(229, 226, 207, 0.015) 16px);
}

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

a {
  color: inherit;
}

code {
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
}

/* Stitch Design Styles */
.stitch-artist-profile {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

/* Sticky Navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  background: rgba(20, 19, 19, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Fixed Top Navbar */
.fixed-top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.navbar-content {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.025em;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:not(.active) {
  color: var(--ink);
  border-bottom: none;
  opacity: 0.7;
}

.nav-link:not(.active):hover {
  color: var(--accent);
  opacity: 1;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.search-btn, .login-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.search-btn:hover {
  color: var(--accent);
}

.login-btn {
  background: rgba(221, 11, 2, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(221, 11, 2, 0.2);
}

.login-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Cinematic Hero Section */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--bg), rgba(20, 19, 19, 0.6), transparent);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.hero-info {
  max-width: 800px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.verified-badge {
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.rank-badge, .listeners-badge {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.hero-name {
  font-size: 4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 16px 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}

.genre-info, .location-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.icon {
  color: var(--accent);
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.follow-btn, .book-btn {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.follow-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.follow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.book-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  box-shadow: 0 8px 16px rgba(221, 11, 2, 0.2);
}

.book-btn:hover {
  filter: brightness(1.1);
}

/* Sticky Secondary Navigation */
.sticky-secondary-nav {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(58, 57, 57, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 64px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
}

.sec-nav-link {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--accent);
  transition: var(--transition);
}

.sec-nav-link:not(.active) {
  color: var(--ink);
  border-bottom: none;
  opacity: 0.6;
}

.sec-nav-link:not(.active):hover {
  color: var(--ink);
  opacity: 1;
}

/* Main Content Grid */
.main-content-grid {
  padding: 32px 64px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Top Tracks Section */
.top-tracks-section .section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.accent-bar {
  width: 6px;
  height: 24px;
  background: var(--accent);
}

.tracks-list {
  display: flex;
  flex-direction: column;
}

.track-header {
  display: grid;
  grid-template-columns: 1fr 7fr 2fr 2fr;
  gap: 16px;
  padding: 12px 16px;
  color: var(--secondary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-row {
  display: grid;
  grid-template-columns: 1fr 7fr 2fr 2fr;
  gap: 16px;
  padding: 24px 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.track-number {
  color: var(--accent);
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 0.875rem;
}

.track-number:not(.featured) {
  color: var(--ink);
  opacity: 0.4;
}

.track-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-artwork {
  width: 48px;
  height: 48px;
  background: var(--surface-bright);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.track-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-info {
  display: flex;
  flex-direction: column;
}

.track-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--ink);
  font-size: 0.875rem;
}

.track-version {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  opacity: 0.6;
  margin-top: 2px;
}

.track-bpm, .track-plays {
  color: var(--secondary);
  font-family: monospace;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Gallery Section */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 400px;
  height: 300px;
  background: var(--surface-bright);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

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

.gallery-caption {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Upcoming Gigs Section */
.upcoming-gigs-section .section-title-small {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.gigs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gig-card {
  background: var(--surface-bright);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.gig-card:hover {
  border-color: rgba(221, 11, 2, 0.2);
}

.gig-info {
  display: flex;
  flex-direction: column;
}

.gig-date {
  color: var(--accent);
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.gig-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--ink);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.gig-venue {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  opacity: 0.4;
  font-weight: 700;
  margin-top: 4px;
}

.gig-arrow {
  color: var(--secondary);
  opacity: 0.2;
  transition: var(--transition);
}

.gig-card:hover .gig-arrow {
  color: var(--accent);
}

.view-all-gigs {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 24px;
}

.view-all-gigs:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

/* Bio Section */
.bio-section {
  background: var(--surface-bright);
  padding: 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.bio-pattern {
  position: absolute;
  bottom: -32px;
  right: -32px;
  opacity: 0.03;
  font-size: 200px;
}

.bio-section .section-title-small {
  margin-bottom: 24px;
}

.bio-text {
  color: var(--ink);
  opacity: 0.6;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.latest-session-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
  transition: var(--transition);
}

.latest-session-link:hover {
  text-decoration: underline;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(20, 19, 19, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  opacity: 0.4;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Footer */
.artist-footer {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0f0e0e;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.025em;
}

.footer-copyright {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  opacity: 0.3;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer-link {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.4;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 24px;
  margin-left: 16px;
}

.footer-social-link {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.section-accent {
  height: 3px;
  background: var(--accent);
  flex: 1;
}

/* Public Agenda Section - Electric Editorial */
.public-agenda-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.featured-event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.featured-event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
}

.featured-event-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-event-content {
  padding: 3rem;
}

.featured-event-date {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem 0;
}

.featured-event-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.featured-event-venue {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem 0;
}

.secondary-events {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.secondary-event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.secondary-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow);
}

.secondary-event-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.secondary-event-date {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.metric-card {
  background: var(--surface-secondary);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Agenda Section - PDF Reference */
.agenda-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.gig-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(229, 226, 207, 0.05);
  position: relative;
  overflow: hidden;
}

.gig-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gig-date {
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  min-width: 100px;
  flex-shrink: 0;
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.date-month {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.1em;
}

.gig-info {
  flex: 1;
}

.gig-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.gig-venue {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  font-weight: 300;
}

/* Bio Section - PDF Reference */
.bio-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bio-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 6rem;
  align-items: start;
}

.bio-text {
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid rgba(229, 226, 207, 0.05);
}

.bio-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

.bio-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(229, 226, 207, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

/* Event History Section - Electric Editorial */
.event-history-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.history-event-card {
  background: var(--surface-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  filter: grayscale(100%);
  opacity: 0.7;
}

.history-event-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.history-event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.history-event-content {
  padding: 2rem;
}

.history-event-date {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem 0;
}

.history-event-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.history-event-venue {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Gallery Section - Stitch Visual Style */
#gallery {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.gallery-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.gallery-controls {
  display: flex;
  gap: 1rem;
}

.gallery-controls button {
  background: var(--surface-bright);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-controls button:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  background: var(--surface-secondary);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(221, 11, 2, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Verified Opportunities Block - Electric Editorial */
.verified-opportunities-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.opportunity-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  z-index: 1;
}

.opportunity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
}

.opportunity-content {
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.opportunity-type {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 1rem 0;
}

.opportunity-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.opportunity-description {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.opportunity-cta {
  background: var(--surface-bright);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.opportunity-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Contact Block - Electric Editorial */
.contact-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(221, 11, 2, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 3rem 0;
  line-height: 1.6;
}

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

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 1.5rem 3rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
}

.contact-button:hover {
  background: var(--ink);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.contact-button.secondary:hover {
  background: var(--accent);
  color: var(--bg);
}

/* CTA Section - PDF Reference */
.cta-section {
  background: var(--accent);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(20, 19, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(229, 226, 207, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--bg);
  margin: 0 0 2rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.3rem;
  color: var(--bg);
  margin: 0 0 3rem 0;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.5rem 3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button.primary {
  background: var(--bg);
  color: var(--accent);
}

.cta-button.secondary {
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Event-Specific Styles */
.stitch-event-profile {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.event-details-section,
.venue-section,
.organizer-section {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.detail-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.detail-title {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.venue-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.venue-info {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
}

.venue-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem 0;
}

.venue-description {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

.venue-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.organizer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.organizer-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.organizer-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.organizer-details {
  flex: 1;
}

.organizer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.organizer-type {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

.organizer-description {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.organizer-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.event-type {
  background: var(--accent);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-type.announcement {
  background: var(--muted);
}

.event-date {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Promoter-Specific Styles */
.stitch-promoter-profile {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.services-section,
.events-section {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.service-description {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.event-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.event-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .bio-content {
    grid-template-columns: 1fr;
  }
  
  .nav-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .venue-content,
  .organizer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .organizer-info {
    flex-direction: column;
    text-align: center;
  }
  
  .venue-actions,
  .organizer-actions {
    flex-direction: column;
  }
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.hero,
.detail-hero-card,
.detail-panel,
.profile-card,
.empty-state {
  background: var(--paper);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(178, 76, 46, 0.28), rgba(111, 58, 99, 0.12));
  filter: blur(10px);
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.detail-copy h1,
.section-head h2,
.detail-panel h2,
.empty-state h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 10ch;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: 34px 0 18px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.ghost-link,
.primary-link,
.back-link,
.card-title-link,
.card-media-link {
  text-decoration: none;
}

.ghost-link,
.primary-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.ghost-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
}

.primary-link {
  color: #fff8f2;
  background: linear-gradient(135deg, #9d4328, #c86446);
}

.back-link {
  margin-bottom: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(58, 35, 10, 0.18);
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.type-pill,
.status-badge,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.type-pill--artist {
  background: var(--artist-soft);
  color: var(--artist);
}

.type-pill--promoter {
  background: var(--promoter-soft);
  color: var(--promoter);
}

.status-badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.status-chip {
  background: rgba(45, 91, 74, 0.12);
  color: var(--artist);
}

.card-body h3 {
  margin: 0;
  font-size: 1.6rem;
  font-family: var(--font-display);
}

.card-title-link:hover {
  color: var(--accent);
}

.meta-list,
.detail-stats {
  display: grid;
  gap: 12px;
}

.meta-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meta-list div,
.detail-stats div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.meta-list dt,
.detail-stats dt {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-list dd,
.detail-stats dd {
  margin: 0;
}

.detail-layout {
  padding-top: 10px;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
}

.detail-image-wrap {
  overflow: hidden;
  border-radius: 22px;
}

.detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-top: 10px;
}

.detail-slug,
.detail-summary {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.bio-mvp {
  margin-top: 22px;
}

.bio-section-head {
  margin-bottom: 18px;
}

.bio-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bio-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.bio-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.bio-chip--muted {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.bio-gallery {
  margin-top: 22px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bio-music {
  margin-top: 22px;
}

.bio-merch {
  margin-top: 22px;
}

.bio-events {
  margin-top: 22px;
}

.music-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.merch-card {
  padding: 0;
  overflow: hidden;
}

.merch-image-wrap {
  border-bottom: 1px solid var(--line);
}

.merch-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.merch-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.merch-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.event-card {
  padding: 0;
  overflow: hidden;
}

.event-card--compact .event-cover {
  aspect-ratio: 16 / 9;
}

.event-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.event-hero-image {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 19, 0.15), rgba(20, 19, 19, 0.86));
}

.event-hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 28px;
  color: #fff8f2;
}

.event-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-family: var(--font-display);
  line-height: 0.95;
}

.event-cover-wrap {
  border-bottom: 1px solid var(--line);
}

.event-cover {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.event-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.event-lineup {
  display: grid;
  gap: 10px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lineup-card {
  display: grid;
  gap: 10px;
}

.event-muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.music-list-card {
  display: grid;
  gap: 16px;
}

.music-list-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.music-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.music-link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.music-link-item {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.music-link-copy {
  display: grid;
  gap: 8px;
}

.music-link-title {
  margin: 0;
  font-weight: 700;
}

.type-pill--platform {
  background: rgba(178, 76, 46, 0.14);
  color: var(--accent);
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-panel,
.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-layout--empty {
  padding-top: 22px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 20px;
  }

  .hero,
  .detail-hero-card,
  .detail-panel,
  .profile-card,
  .empty-state {
    border-radius: 22px;
  }

  .section-head,
  .detail-actions,
  .detail-grid,
  .detail-hero-card,
  .bio-overview-grid,
  .gallery-strip,
  .music-lists,
  .merch-grid,
  .events-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .detail-hero-card,
  .detail-grid {
    display: grid;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contests & Leaderboard
   ========================================================================== */

.leaderboard-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  background: var(--surface-low);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.leaderboard-table th {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-subtle);
}

.leaderboard-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.leaderboard-table .row--top {
  background: rgba(187, 134, 252, 0.05); /* Using a hardcoded primary-ish color fallback if var is missing */
}

.leaderboard-table .row--top .col-pos {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

.leaderboard-table .col-pos {
  width: 60px;
  text-align: center;
  color: var(--text-muted);
}

.leaderboard-table .col-votes {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
}

.card--unclaimed {
  border: 1px dashed var(--border-subtle);
  opacity: 0.85;
  filter: grayscale(0.5);
  transition: all 0.3s ease;
}

.card--unclaimed:hover {
  opacity: 1;
  filter: grayscale(0);
  border-style: solid;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* BIO Section Styles */
.text-\[#DD0B02\] {
  color: #DD0B02;
}

.font-headline {
  font-family: var(--font-display);
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.border-b {
  border-bottom-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.text-on-surface-variant {
  color: var(--line);
}

.font-medium {
  font-weight: 500;
}

.text-white {
  color: white;
}

.font-bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.bg-surface-container {
  background-color: var(--surface-secondary);
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.text-\[10px\] {
  font-size: 0.625rem;
  line-height: 0.75rem;
}

.uppercase {
  text-transform: uppercase;
}

.border {
  border-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.25rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-3 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gap-12 {
  gap: 3rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.lg\:col-span-12 {
  @media (min-width: 1024px) {
    grid-column: span 12;
  }
}

.pt-12 {
  padding-top: 3rem;
}

.border-t {
  border-top-width: 1px;
}

.max-w-4xl {
  max-width: 56rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-on-surface\/80 {
  color: rgba(229, 226, 207, 0.8);
}

.leading-relaxed {
  line-height: 1.625;
}

.font-body {
  font-family: var(--font-body);
}

.hover\:bg-surface-container-high:hover {
  @media (hover: hover) {
    background-color: var(--surface-bright);
  }
}

.transition-colors {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.hover\:border-\[#DD0B02\]\/50:hover {
  @media (hover: hover) {
    border-color: rgba(221, 11, 2, 0.5);
  }
}

.border-transparent {
  border-color: transparent;
}

.transition-all {
  transition: all 0.15s ease-in-out;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 3rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.verified-badge {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.125rem;
}

.rank-badge, .listeners-badge {
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.genre-info, .location-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
  font-size: 0.875rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.follow-btn, .book-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.follow-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.book-btn {
  background: var(--accent);
  color: white;
}

.book-btn:hover {
  background: #b50801;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221, 11, 2, 0.4);
}

/* Bio Feature Section */
.bio-feature-section {
  margin-bottom: 4rem;
}

.bio-left-column {
  display: flex;
  flex-direction: column;
}

.bio-content p {
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.stats-card {
  background: var(--surface-secondary);
  padding: 1.5rem;
  border-radius: 0.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-size: 0.625rem;
  color: var(--line);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

/* Career Highlights Section */
.career-highlights-section {
  margin-bottom: 4rem;
}

.highlights-grid {
  display: grid;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--surface-secondary);
  padding: 1.5rem;
  border-radius: 0.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-card h4 {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
}

.highlight-card li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

/* Gallery Preview Section */
.gallery-preview-section {
  margin-bottom: 4rem;
}

.gallery-scroll-container {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-scroll-container::-webkit-scrollbar {
  display: none;
}

.gallery-horizontal {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}

.gallery-item {
  min-width: 300px;
  aspect-ratio: 4/3;
  background: var(--surface-secondary);
  border-radius: 0.125rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  background: var(--surface-bright);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-caption {
  color: white;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .gallery-item {
    min-width: 400px;
  }
}

/* Google AI Studio Layout Classes - Enhanced Visual Design */
.bg-background {
  background-color: var(--bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-surface {
  background-color: var(--surface-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bg-surface-bright {
  background-color: var(--surface-bright);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bg-primary {
  background-color: var(--accent);
}

.text-primary {
  color: var(--accent);
}

.text-cream {
  color: var(--ink);
}

.text-white {
  color: white;
}

.text-white\/40 {
  color: rgba(255, 255, 255, 0.4);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/30 {
  color: rgba(255, 255, 255, 0.3);
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-primary {
  border-color: var(--accent);
}

.border-primary\/30 {
  border-color: rgba(221, 11, 2, 0.3);
}

.border-primary\/50 {
  border-color: rgba(221, 11, 2, 0.5);
}

.bg-surface\/20 {
  background-color: rgba(32, 31, 31, 0.2);
}

.bg-surface\/50 {
  background-color: rgba(32, 31, 31, 0.5);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-black\/90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-surface-bright:hover {
  background-color: var(--surface-bright);
}

.hover\:bg-black:hover {
  background-color: black;
}

.hover\:text-primary:hover {
  color: var(--accent);
}

.hover\:border-primary:hover {
  border-color: var(--accent);
}

.hover\:border-primary\/50:hover {
  border-color: rgba(221, 11, 2, 0.5);
}

.hover\:scale-\[1\.02\]:hover {
  transform: scale(1.02);
}

.hover\:grayscale-0:hover {
  filter: grayscale(0);
}

.active\:scale-95:active {
  transform: scale(0.95);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:text-primary {
  color: var(--accent);
}

.group:hover .group-hover\:bg-surface-bright {
  background-color: var(--surface-bright);
}

.font-headline {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tighter {
  letter-spacing: -0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.backdrop-blur-xl {
  backdrop-filter: blur(16px);
}

.snap-x {
  scroll-snap-type: x mandatory;
}

.snap-center {
  scroll-snap-align: center;
}

.rounded-sm {
  border-radius: 0.25rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.overflow-hidden {
  overflow: hidden;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 4rem;
}

.gap-16 {
  gap: 6rem;
}

.gap-1 {
  gap: 0.25rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.pt-16 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 8rem;
}

.pt-8 {
  padding-top: 2.5rem;
}

.pt-12 {
  padding-top: 4rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.px-6 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-1 {
  padding: 0.25rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-24 {
  margin-bottom: 8rem;
}

.mb-32 {
  margin-bottom: 12rem;
}

.mb-12 {
  margin-bottom: 4rem;
}

.mb-8 {
  margin-bottom: 3rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-2 {
  margin-right: 0.5rem;
}

.w-full {
  width: 100%;
}

.w-8 {
  width: 2rem;
}

.w-6 {
  width: 1.5rem;
}

.w-5 {
  width: 1.25rem;
}

.w-4 {
  width: 1rem;
}

.w-3 {
  width: 0.75rem;
}

.w-2 {
  width: 0.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-8 {
  height: 2rem;
}

.h-6 {
  height: 1.5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.h-3 {
  height: 0.75rem;
}

.h-2 {
  height: 0.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-\[320px\] {
  height: 400px;
}

.h-\[480px\] {
  height: 480px;
}

.h-\[280px\] {
  height: 280px;
}

.gallery-carousel {
  height: 280px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-item-carousel {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
}

.gallery-item-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.promoter-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .promoter-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .promoter-cards-grid {
    grid-template-columns: 1fr;
  }
  .premium-container,
  .premium-header {
    padding-inline: 16px;
  }
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-7xl {
  max-width: 90rem;
}

.max-w-4xl {
  max-width: 65rem;
}

.premium-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
}

.premium-header {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.z-50 {
  z-index: 50;
}

.z-20 {
  z-index: 20;
}

.z-10 {
  z-index: 10;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.top-6 {
  top: 1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.left-1\/2 {
  left: 50%;
}

.bottom-4 {
  bottom: 1rem;
}

.inset-0 {
  inset: 0;
}

.object-cover {
  object-fit: cover;
}

.object-cover {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.opacity-0 {
  opacity: 0;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-100 {
  opacity: 1;
}

.grayscale {
  filter: grayscale(100%);
}

.shadow-lg {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.shadow-2xl {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.4), 0 15px 25px -5px rgba(0, 0, 0, 0.3);
}

.shadow-xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 15px 20px -5px rgba(0, 0, 0, 0.25);
}

.aspect-\[16\/10\] {
  aspect-ratio: 16/10;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-1 {
  flex: 1 1 0%;
}

.hidden {
  display: none;
}

.lg\:flex {
  @media (min-width: 1024px) {
    display: flex;
  }
}

.lg\:grid-cols-4 {
  @media (min-width: 1024px) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lg\:grid-cols-2 {
  @media (min-width: 1024px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.md\:flex-row {
  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.md\:px-12 {
  @media (min-width: 768px) {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.md\:px-16 {
  @media (min-width: 768px) {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.md\:grid-cols-3 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.md\:grid-cols-2 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.text-7xl {
  font-size: 5rem;
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.md\:text-7xl {
  @media (min-width: 768px) {
    font-size: 6rem;
    line-height: 0.8;
    letter-spacing: -0.035em;
  }
}

.md\:min-w-\[450px\] {
  @media (min-width: 768px) {
    min-width: 450px;
  }
}

.text-5xl {
  font-size: 3.5rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.md\:text-5xl {
  @media (min-width: 768px) {
    font-size: 4rem;
    line-height: 0.85;
    letter-spacing: -0.025em;
  }
}

.md\:flex-col {
  @media (min-width: 768px) {
    flex-direction: column;
  }
}

.md\:items-start {
  @media (min-width: 768px) {
    align-items: flex-start;
  }
}

.md\:justify-center {
  @media (min-width: 768px) {
    justify-content: center;
  }
}

.md\:gap-12 {
  @media (min-width: 768px) {
    gap: 3rem;
  }
}

.md\:gap-16 {
  @media (min-width: 768px) {
    gap: 4rem;
  }
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.-mx-12 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border {
  border-width: 1px;
}

.border-transparent {
  border-color: transparent;
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/90 {
  --tw-gradient-from: rgba(0, 0, 0, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.selection\:bg-primary\/30::selection {
  background-color: rgba(221, 11, 2, 0.3);
}

.selection\:text-white::selection {
  color: white;
}

/* Premium Visual Enhancements */
.hero-image {
  filter: grayscale(100%) contrast(1.1);
  object-position: center 20%;
}

.hero-gradient {
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.2) 0%, 
    rgba(0,0,0,0.6) 40%, 
    rgba(0,0,0,0.8) 100%
  );
}

.info-card {
  background: linear-gradient(135deg, 
    rgba(32, 31, 31, 0.8) 0%, 
    rgba(32, 31, 31, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.promoter-section {
  background: linear-gradient(135deg, 
    rgba(221, 11, 2, 0.05) 0%, 
    rgba(32, 31, 31, 0.1) 100%
  );
  border: 1px solid rgba(221, 11, 2, 0.2);
}

.gallery-item img {
  filter: grayscale(100%) contrast(1.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.05);
}

.stats-number {
  font-size: 2.5rem;
  line-height: 0.8;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bio-text {
  line-height: 1.7;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(221, 11, 2, 0.9);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.verified-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  box-shadow: 0 4px 15px rgba(221, 11, 2, 0.3);
}

.booking-button {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border: 2px solid rgba(221, 11, 2, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-button:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(221, 11, 2, 0.4);
}

/* Hide scrollbar for gallery */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* TGSN Unified Layout - No wrapper, full-width on background */
.tgsn-unified-layout {
  /* Content lives directly on page background */
  width: 100%;
}

.tgsn-sticky-header,
.tgsn-bio-tabs,
.tgsn-content-section,
.tgsn-gallery-section,
.tgsn-promoter-section,
.tgsn-bio-promoter-section,
.tgsn-footer {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 32px;
}

.tgsn-sticky-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tgsn-header-brand {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.tgsn-header-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.tgsn-header-nav a,
.tgsn-bio-tabs a,
.tgsn-footer-nav a,
.tgsn-footer-social a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(229, 226, 207, 0.72);
  transition: 0.25s ease;
}

.tgsn-header-nav a:hover,
.tgsn-bio-tabs a:hover,
.tgsn-footer-nav a:hover,
.tgsn-footer-social a:hover {
  color: var(--accent);
}

.tgsn-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.tgsn-header-actions button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tgsn-hero-fullwidth {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  background: #0a0a0a;
}

.tgsn-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 8%,
    transparent 92%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.tgsn-hero-media,
.tgsn-hero-overlay {
  position: absolute;
  inset: 0;
}

.tgsn-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: none;
}

.tgsn-hero-media--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.tgsn-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

.tgsn-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 30px;
  pointer-events: none;
}

.tgsn-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 48px;
  pointer-events: none;
}

.tgsn-hero-content > * {
  pointer-events: auto;
}

.tgsn-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: white;
  max-width: calc(100% - 80px); /* Leave space for actions */
}

.tgsn-hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tgsn-kicker-pill,
.tgsn-kicker-link {
  padding: 0.35rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tgsn-kicker-pill {
  background: var(--accent);
  color: white;
  padding: 0.4rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.tgsn-kicker-muted {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tgsn-kicker-link {
  color: var(--accent);
  border: 1px solid rgba(221, 11, 2, 0.35);
}

.tgsn-hero-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
}

.tgsn-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-style: italic;
  color: white;
}

.tgsn-hero-summary {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* VERIFICATION BADGE VARIANTS */
.tgsn-kicker-pill--verified {
  background: var(--accent);
  color: white;
}

.tgsn-kicker-pill--claimed {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tgsn-kicker-pill--unclaimed {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

/* STATS ROW */
.tgsn-hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tgsn-hero-stat {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tgsn-hero-stat-dot {
  color: rgba(255, 255, 255, 0.4);
}

/* MERGED META ROW - Status + Stats */
.tgsn-hero-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.tgsn-meta-status {
  font-weight: 700;
}

.tgsn-meta-status.is-verified {
  color: var(--accent);
}

.tgsn-meta-status.is-claimed {
  color: rgba(255, 255, 255, 0.85);
}

.tgsn-meta-status.is-unclaimed {
  color: rgba(255, 255, 255, 0.5);
}

.tgsn-meta-dot {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.tgsn-meta-stat {
  color: rgba(255, 255, 255, 0.65);
}

/* NAME ROW + ALL ACTIONS */
.tgsn-hero-name-row {
  margin-bottom: 0.5rem;
}

.tgsn-hero-actions {
  position: absolute;
  right: 24px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tgsn-owner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-owner-btn, .tgsn-visitor-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tgsn-owner-btn:hover, .tgsn-visitor-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.tgsn-owner-btn .material-symbols-outlined,
.tgsn-visitor-btn .material-symbols-outlined {
  font-size: 18px;
}

/* VISITOR ACTIONS - now inside content */
.tgsn-visitor-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tgsn-visitor-btn--heart:hover {
  background: rgba(221, 11, 2, 0.4);
}

.tgsn-visitor-btn .material-symbols-outlined {
  font-size: 22px;
}

/* VISITOR DROPDOWN MENU */
.tgsn-visitor-menu {
  position: relative;
}

.tgsn-visitor-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.tgsn-visitor-menu.is-open .tgsn-visitor-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tgsn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.tgsn-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.tgsn-dropdown-item .material-symbols-outlined {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

/* DETAILS ROW - Genre + Location */
.tgsn-hero-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.tgsn-detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tgsn-detail-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--accent);
}

.tgsn-detail-dot {
  color: rgba(255, 255, 255, 0.3);
}

/* DROPDOWN Z-INDEX FIX - must be above sticky tabs */
.tgsn-visitor-menu {
  position: relative;
  z-index: 1100;
}

.tgsn-visitor-dropdown {
  z-index: 1101;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.tgsn-promoter-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
}

.tgsn-mini-label,
.tgsn-card-label,
.tgsn-list-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  font-weight: 800;
}

.tgsn-mini-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tgsn-bio-tabs {
  display: flex;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 48px;
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.4));
  backdrop-filter: blur(10px);
}

.tgsn-bio-tabs a {
  padding-bottom: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  position: relative;
}

.tgsn-bio-tabs a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.tgsn-bio-tabs a:hover {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(221, 11, 2, 0.3);
}

.tgsn-bio-tabs a:hover::after,
.tgsn-bio-tabs a.is-active::after {
  transform: scaleX(1);
}

.tgsn-bio-tabs a.is-active {
  color: var(--accent);
}

.tgsn-bio-tabs a.is-active:hover {
  color: white;
  text-shadow: none;
}

.tgsn-bio-tabs a.is-conditionally-hidden {
  display: none;
}

.tgsn-content-section {
  padding-top: 4rem;
}

.tgsn-section-label {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tgsn-bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.tgsn-info-panel,
.tgsn-bio-panel,
.tgsn-digital-panel {
  padding: 2rem;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 320px;
}

.tgsn-panel-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(221, 11, 2, 0.25);
}

.tgsn-bio-text p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-size: 0.92rem;
}

.tgsn-facts {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.tgsn-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tgsn-facts dt {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 600;
}

.tgsn-facts dd,
.tgsn-facts dd a {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.tgsn-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tgsn-chip-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 0.65rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.tgsn-list-block + .tgsn-list-block {
  margin-top: 1.4rem;
}

/* ── BIO TAB COMPONENTS ──────────────────────────────────────────────── */

/* Chip sections (Ubicación + Géneros in Panel 1) */
.bio-chip-section {
  margin-top: 1.25rem;
}

.bio-chip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.bio-chip-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
}

.bio-chip-section > .bio-chip-label {
  margin-bottom: 0.5rem;
}

.bio-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bio-location-chip,
.bio-genre-chip {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bio-location-chip:hover,
.bio-genre-chip:hover {
  border-color: rgba(221, 11, 2, 0.5);
  color: white;
}

.bio-location-chip.is-primary {
  border-color: rgba(221, 11, 2, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

/* Colaboraciones */
.bio-collab-group {
  margin-bottom: 1.5rem;
}

.bio-collab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.bio-collab-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

.bio-eye-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s ease;
}

.bio-eye-btn:hover { color: rgba(255, 255, 255, 0.7); }

.bio-eye-btn .material-symbols-outlined { font-size: 16px; }

.bio-collab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bio-collab-item {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bio-collab-item:hover {
  color: white;
  border-color: rgba(221, 11, 2, 0.4);
}

.bio-ver-mas {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bio-ver-mas:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.bio-empty {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.bio-empty--hint {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-size: 0.76rem;
  line-height: 1.5;
}

/* RRSS — 2-column text-only social grid */
.bio-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.bio-social-link {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-transform: capitalize;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio-social-link:hover {
  color: white;
  border-color: rgba(221, 11, 2, 0.35);
  background: rgba(221, 11, 2, 0.04);
}

/* Full-width biography */
.bio-full-bio {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bio-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
  font-style: italic;
}

/* ── BOOKING SECTION (bio + agenda tabs) ─────────────────────────────── */
.tgsn-bio-promoter-section {
  padding-bottom: 2.5rem;
}

.bpz-legacy {
  display: none !important;
}

.bpz-header {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
}

.bpz-header-accent {
  width: 3px;
  min-height: 72px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(221, 11, 2, 0.12) 100%);
}

.bpz-header-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.bpz-header-icon {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.bpz-header-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f4eee8;
}

.bpz-header-subtitle {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 238, 232, 0.58);
}

.bpz-header-cta {
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bpz-header-cta:hover { background: #ff1a1a; }
.bpz-header-cta[hidden] { display: none; }

.bpz-locked-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.bpz-locked-icon { font-size: 2rem; color: rgba(255,255,255,0.2); }
.bpz-locked-notice p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}
.bpz-locked-btn { margin-top: 0.5rem; }

.bpz-historial { margin-top: 1rem; }
.bpz-historial-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bpz-historial-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.bpz-historial-year {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.bpz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bpz-panel {
  min-height: 310px;
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(32, 30, 30, 0.96) 0%, rgba(23, 22, 22, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.bpz-panel--cta {
  background: linear-gradient(180deg, #ea1006 0%, #d50b03 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bpz-panel-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bpz-kicker,
.bpz-stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.42);
}

.bpz-touring-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.bpz-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(221, 11, 2, 0.55);
}

.bpz-touring-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
}

.bpz-panel-divider,
.bpz-cta-divider {
  height: 1px;
  margin: 1.25rem 0;
  background: rgba(255, 255, 255, 0.09);
}

.bpz-meta-block {
  display: grid;
  gap: 0.8rem;
}

.bpz-meta-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.bpz-meta-row > span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
}

.bpz-meta-row strong {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  text-align: right;
}

.bpz-meta-row--agency {
  align-items: start;
}

.bpz-inline-field {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.bpz-inline-field span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.bpz-input,
.bpz-select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.82rem;
}

.bpz-select {
  width: auto;
  min-width: 128px;
}

.bpz-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.bpz-input:focus,
.bpz-select:focus {
  outline: none;
  border-color: rgba(221, 11, 2, 0.8);
  box-shadow: 0 0 0 3px rgba(221, 11, 2, 0.14);
}

.bpz-help {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.bpz-agency-field {
  position: relative;
}

.bpz-agency-results {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  gap: 0.35rem;
  padding: 0.4rem;
  background: #171616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.bpz-agency-option {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  text-align: left;
  cursor: pointer;
}

.bpz-agency-option span,
.bpz-agency-option small {
  display: block;
}

.bpz-agency-option span {
  font-size: 0.84rem;
  font-weight: 700;
}

.bpz-agency-option small {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.bpz-agency-option:hover,
.bpz-agency-option--create {
  background: rgba(221, 11, 2, 0.1);
}

.bpz-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bpz-stat-value {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.bpz-ranking-block {
  display: grid;
  gap: 0.9rem;
}

.bpz-ranking-line {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.bpz-ranking-line strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: white;
}

.bpz-ranking-line span {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

.bpz-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 0.18rem;
  height: 42px;
}

.bpz-bar {
  display: block;
  background: linear-gradient(180deg, #ff2b20 0%, #dd0b02 100%);
}

.bpz-bar.is-muted {
  background: rgba(255, 255, 255, 0.14);
}

.bpz-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.bpz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bpz-btn:hover {
  transform: translateY(-1px);
}

.bpz-btn--secondary {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.bpz-btn--secondary:hover {
  background: rgba(0, 0, 0, 0.28);
}

.bpz-btn--primary {
  margin-top: auto;
  background: rgba(18, 10, 10, 0.92);
  color: white;
}

.bpz-btn--primary:hover {
  background: rgba(0, 0, 0, 0.92);
}

.bpz-booking-caption {
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.bpz-booking-caption span {
  color: white;
  font-weight: 700;
}

/* compact wrapper — same max-width feel as bio-full-bio */
.bpz-compact {
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bpz-compact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
}

.bpz-col {
  padding: 1.5rem;
}

.bpz-col--accent {
  padding: 1.5rem;
  background: rgba(221, 11, 2, 0.04);
  border-left: 1px solid rgba(221, 11, 2, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bpz-card {
  padding: 0;
}

.bpz-card-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.35rem;
}

.bpz-card-value {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.bpz-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bpz-card-list li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.bpz-booking-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.06em;
}

.bpz-resources {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.bpz-resource-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bpz-resource-btn:hover { background: #ff1a1a; }

.bpz-resource-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
}

.bpz-resource-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

@media (max-width: 768px) {
  .bio-social-grid    { grid-template-columns: 1fr; }
  .bpz-header { gap: 0.85rem; }
  .bpz-header-title { font-size: 1rem; }
  .bpz-grid { grid-template-columns: 1fr; }
  .bpz-panel { min-height: auto; }
  .bpz-meta-row { grid-template-columns: 1fr; }
  .bpz-meta-row strong { text-align: left; }
  .bpz-stats-grid,
  .bpz-cta-actions { grid-template-columns: 1fr; }
  .bpz-compact-grid   { grid-template-columns: 1fr; }
  .bpz-col--accent    { border-left: none; border-top: 1px solid rgba(221, 11, 2, 0.18); }
}

.tgsn-list-block ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.tgsn-social-stack {
  display: grid;
  gap: 0.7rem;
}

.tgsn-social-stack a,
.tgsn-contact-list a,
.tgsn-promoter-card-accent a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  padding: 0.82rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tgsn-gallery-section {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.tgsn-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(221, 11, 2, 0.4);
}

.tgsn-gallery-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tgsn-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tgsn-gallery-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.tgsn-gallery-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.tgsn-gallery-arrow .material-symbols-outlined {
  font-size: 24px;
}

.tgsn-gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
  flex: 1;
}

.tgsn-gallery-track::-webkit-scrollbar {
  display: none;
}

.tgsn-gallery-item {
  min-width: 340px;
  width: 340px;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #151515;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.tgsn-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tgsn-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.tgsn-gallery-item:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}

.tgsn-gallery-item img:focus-visible,
.tgsn-merch-image:focus-visible,
.tgsn-lightbox-close:focus-visible,
.tgsn-lightbox-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.tgsn-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tgsn-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.tgsn-gallery-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.tgsn-gallery-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.tgsn-promoter-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(221, 11, 2, 0.1), rgba(255, 255, 255, 0.02));
  border-left: 2px solid var(--accent);
}

.tgsn-promoter-banner strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.tgsn-promoter-banner p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.tgsn-promoter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.tgsn-promoter-card {
  padding: 1.75rem;
  min-height: 280px;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-card-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  line-height: 0.95;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
}

.tgsn-card-list {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.82rem;
}

.tgsn-metrics {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.tgsn-metric {
  text-align: center;
}

.tgsn-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.tgsn-metric-label {
  display: block;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.35rem;
}

.tgsn-contact-list {
  display: grid;
  gap: 0.6rem;
}

.tgsn-social-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tgsn-promoter-card-accent {
  background: linear-gradient(180deg, #ef160c 0%, #cb0b03 100%);
}

.tgsn-resource-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tgsn-resource-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.tgsn-booking-btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.tgsn-booking-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.tgsn-dual-strip {
  display: none; /* Hidden in simplified layout */
}

.tgsn-footer {
  padding: 3rem 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem 3rem;
  margin-top: 2rem;
}

.tgsn-footer-brand strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tgsn-footer-brand span {
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.6rem;
  margin-top: 0.25rem;
  display: block;
}

.tgsn-footer-nav,
.tgsn-footer-social {
  display: flex;
  gap: 2rem;
}

.tgsn-footer-nav a,
.tgsn-footer-social a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .tgsn-bio-grid,
  .tgsn-promoter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tgsn-bio-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .tgsn-sticky-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    height: auto;
    padding: 0.75rem 1rem;
  }

  .tgsn-header-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .tgsn-hero-fullwidth {
    height: 400px;
  }

  .tgsn-hero-inner {
    padding-inline: 1rem;
    padding-bottom: 1rem;
  }

  .tgsn-hero-content {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 20px;
  }
  
  .tgsn-hero-actions {
    right: 16px;
    bottom: 24px;
  }

  .tgsn-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: calc(100% - 60px); /* Space for mobile actions stack */
  }

  /* HERO RESPONSIVE */
  .tgsn-hero-meta-row {
    flex-wrap: wrap;
    font-size: 0.65rem;
    gap: 0.4rem;
  }

  .tgsn-owner-actions {
    padding-right: 0;
    padding-bottom: 0.4rem;
  }

  .tgsn-visitor-btn .material-symbols-outlined {
    font-size: 16px;
  }

  .tgsn-hero-details {
    flex-wrap: wrap;
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .tgsn-bio-grid,
  .tgsn-promoter-grid,
  .tgsn-footer {
    grid-template-columns: 1fr;
  }

  .tgsn-gallery-item {
    width: 240px;
    min-width: 240px;
    height: 170px;
  }

  .tgsn-bio-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.75rem 1rem;
  }

  .tgsn-content-section,
  .tgsn-gallery-section,
  .tgsn-promoter-section,
  .tgsn-agenda-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* AGENDA SECTION STYLES */
.tgsn-agenda-section {
  padding: 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* ROUTING STRIP */
.tgsn-routing-strip {
  position: relative;
  padding: 3rem 2rem;
  margin-bottom: 0;
  overflow: hidden;
}
.tgsn-routing-line {
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,11,2,0.3) 20%, rgba(221,11,2,0.3) 80%, transparent);
  transform: translateY(-50%);
}
.tgsn-routing-stops {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.tgsn-routing-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.tgsn-routing-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.25);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.tgsn-routing-stop.is-active .tgsn-routing-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(221,11,2,0.2);
  transform: rotate(45deg) scale(1.25);
}
.tgsn-routing-city {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.tgsn-routing-stop.is-active .tgsn-routing-city { color: var(--accent); }
.tgsn-routing-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* TOUR STATS BAR */
.tgsn-tour-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  margin-bottom: 0;
  flex-wrap: wrap;
  text-align: center;
}
.tgsn-tour-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.tgsn-tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.tgsn-tour-stats-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.tgsn-tour-soldout {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
}
.tgsn-tour-soldout .material-symbols-outlined { font-size: 14px; }

/* EVENT ROW ADDITIONS */
.tgsn-event-description {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.2rem 0 0;
}
.tgsn-event-meta-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tgsn-event-info-line {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}
.tgsn-events-list--past .tgsn-event-card {
  border-left-color: rgba(255,255,255,0.15);
  opacity: 0.65;
}
.tgsn-events-list--past .tgsn-event-card:hover { opacity: 1; }

/* TIMELINE */
.tgsn-timeline {
  position: relative;
  padding: 3rem 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

.tgsn-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(221, 11, 2, 0.3) 20%, rgba(221, 11, 2, 0.3) 80%, transparent 100%);
  transform: translateY(-50%);
}

.tgsn-timeline-stops {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tgsn-timeline-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tgsn-timeline-stop.is-active .tgsn-timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(221, 11, 2, 0.5);
}

.tgsn-timeline-city {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.tgsn-timeline-stop.is-active .tgsn-timeline-city {
  color: white;
}

.tgsn-timeline-month {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* TOUR STATS */
.tgsn-tour-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(18, 18, 18, 0.8);
  border-top: 1px solid rgba(221, 11, 2, 0.3);
  border-bottom: 1px solid rgba(221, 11, 2, 0.3);
  margin-bottom: 2rem;
}

.tgsn-tour-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.tgsn-tour-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tgsn-tour-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tgsn-tour-metrics {
  display: flex;
  gap: 3rem;
}

.tgsn-tour-metric {
  text-align: center;
}

.tgsn-tour-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.tgsn-tour-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* AGENDA FILTERS */
.tgsn-agenda-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-agenda-filter {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tgsn-agenda-filter:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.tgsn-agenda-filter.is-active {
  background: var(--accent);
  color: white;
}

/* AGENDA EVENTS */
.tgsn-agenda-events {
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.tgsn-agenda-section-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tgsn-agenda-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.tgsn-events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tgsn-event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(18, 18, 18, 0.5);
  border-left: 3px solid var(--accent);
  transition: background 0.25s ease;
}

.tgsn-event-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tgsn-event-card.is-sold-out {
  border-left-color: rgba(255, 255, 255, 0.2);
  opacity: 0.7;
}

.tgsn-event-date {
  text-align: center;
}

.tgsn-event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.tgsn-event-month {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.tgsn-event-venue {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin: 0 0 0.25rem;
}

.tgsn-event-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.tgsn-event-actions {
  display: flex;
  align-items: center;
}

.tgsn-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tgsn-event-cta:hover {
  background: #ff1a1a;
  transform: translateX(4px);
}

.tgsn-event-cta .material-symbols-outlined {
  font-size: 16px;
}

.tgsn-event-sold-out {
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* AGENDA EMPTY STATE */
.tgsn-agenda-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-empty-icon {
  margin-bottom: 1.5rem;
}

.tgsn-empty-icon .material-symbols-outlined {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.tgsn-empty-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0 0 1rem;
}

.tgsn-empty-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.tgsn-empty-cta {
  padding: 1rem 2.5rem;
  background: var(--accent);
  border: none;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-empty-cta:hover {
  background: #ff1a1a;
  box-shadow: 0 4px 20px rgba(221, 11, 2, 0.4);
}

/* PAST HIGHLIGHTS */
.tgsn-past-highlights {
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.tgsn-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tgsn-highlight-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}

.tgsn-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
  transform: scale(1);
}

.tgsn-highlight-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tgsn-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.tgsn-highlight-label {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  width: fit-content;
}

.tgsn-highlight-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin: 0 0 0.25rem;
}

.tgsn-highlight-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.tgsn-highlight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tgsn-highlight-link:hover {
  color: white;
}

/* AGENDA CTA */
.tgsn-agenda-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--accent);
  margin-top: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tgsn-agenda-cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: white;
  margin: 0 0 0.25rem;
}

.tgsn-agenda-cta-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.tgsn-agenda-cta-btn {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--accent);
  border: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tgsn-agenda-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* AGENDA RESPONSIVE */
@media (max-width: 1024px) {
  .tgsn-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tgsn-tour-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .tgsn-tour-metrics {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .tgsn-timeline-stops {
    gap: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
  }
  
  .tgsn-event-card {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .tgsn-event-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  
  .tgsn-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .tgsn-agenda-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .tgsn-agenda-cta-content h3 {
    font-size: 1.25rem;
  }
}

/* MUSIC SECTION STYLES */
.tgsn-music-section {
  padding: 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* FEATURED TRACK HERO */
.tgsn-featured-track {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.tgsn-featured-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(221, 11, 2, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(221, 11, 2, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.tgsn-featured-artwork {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tgsn-featured-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.tgsn-featured-artwork:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.tgsn-featured-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.tgsn-featured-artwork:hover .tgsn-featured-play {
  opacity: 1;
}

.tgsn-featured-play .material-symbols-outlined {
  font-size: 64px;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.tgsn-featured-play:hover .material-symbols-outlined {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(221, 11, 2, 0.6);
}

.tgsn-featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.tgsn-featured-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tgsn-featured-badge {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tgsn-featured-badge--secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.tgsn-featured-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: white;
  margin: 0;
  line-height: 1.1;
}

.tgsn-featured-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.tgsn-featured-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.tgsn-featured-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.tgsn-featured-stat .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}

.tgsn-featured-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tgsn-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-featured-btn--primary {
  background: var(--accent);
  color: white;
}

.tgsn-featured-btn--primary:hover {
  background: #ff1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(221, 11, 2, 0.4);
}

.tgsn-featured-btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tgsn-featured-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.tgsn-featured-btn .material-symbols-outlined {
  font-size: 20px;
}

/* MUSIC LIBRARY */
.tgsn-music-library {
  padding: 0 3rem 3rem;
}

.tgsn-music-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-music-group {
  margin-bottom: 2rem;
}

.tgsn-music-group-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(221, 11, 2, 0.2);
}

.tgsn-bio-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.tgsn-music-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
}

.tgsn-music-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* MUSIC STATS STRIP */
.tgsn-music-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
  position: relative;
}

.tgsn-music-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(221, 11, 2, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tgsn-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.tgsn-stat-card:hover {
  background: rgba(221, 11, 2, 0.05);
  border-color: rgba(221, 11, 2, 0.2);
}

.tgsn-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1;
  text-shadow: 0 0 30px rgba(221, 11, 2, 0.3);
}

.tgsn-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

/* STICKY FILTERS */
.tgsn-sticky-filters {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(20, 19, 19, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-music-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tgsn-music-filter {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-music-filter:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.tgsn-music-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* TRACK ROWS */
.tgsn-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* SIMPLIFIED TRACK ROWS WITH RANKING */
.tgsn-track-row {
  display: grid;
  grid-template-columns: 80px 70px 1fr 140px 200px;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.tgsn-track-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(221, 11, 2, 0.2);
  transform: translateX(4px);
}

/* TOP 3 RANKING PREMIUM STYLES */
.tgsn-track-row.is-top-1 {
  background: linear-gradient(90deg, rgba(221, 11, 2, 0.15) 0%, rgba(18, 18, 18, 0.8) 100%);
  border-color: rgba(221, 11, 2, 0.4);
  box-shadow: 0 0 30px rgba(221, 11, 2, 0.15);
}

.tgsn-track-row.is-top-1 .tgsn-rank-number {
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(221, 11, 2, 0.6);
}

.tgsn-track-row.is-top-2 {
  background: linear-gradient(90deg, rgba(221, 11, 2, 0.08) 0%, rgba(18, 18, 18, 0.8) 100%);
  border-color: rgba(221, 11, 2, 0.25);
}

.tgsn-track-row.is-top-2 .tgsn-rank-number {
  font-size: 1.75rem;
  color: rgba(221, 11, 2, 0.9);
}

.tgsn-track-row.is-top-3 {
  background: linear-gradient(90deg, rgba(221, 11, 2, 0.05) 0%, rgba(18, 18, 18, 0.8) 100%);
  border-color: rgba(221, 11, 2, 0.15);
}

.tgsn-track-row.is-top-3 .tgsn-rank-number {
  font-size: 1.5rem;
  color: rgba(221, 11, 2, 0.8);
}

/* RANKING */
.tgsn-track-rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tgsn-rank-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.tgsn-rank-crown {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

/* ARTWORK */
.tgsn-track-artwork {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
}

.tgsn-track-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.tgsn-track-row:hover .tgsn-track-artwork img {
  filter: grayscale(0%);
}

/* TRACK DETAILS */
.tgsn-track-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tgsn-track-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
  margin: 0;
}

.tgsn-track-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* VOTES COMPACT */
.tgsn-track-votes-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tgsn-votes-fire {
  font-size: 1rem;
}

.tgsn-votes-count {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* ACTION BUTTONS */
.tgsn-track-actions-compact {
  display: flex;
  gap: 0.75rem;
}

.tgsn-track-btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-track-btn--vote {
  background: var(--accent);
  color: white;
}

.tgsn-track-btn--vote:hover {
  background: #ff1a1a;
  box-shadow: 0 4px 15px rgba(221, 11, 2, 0.4);
}

.tgsn-track-btn--save {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tgsn-track-btn--save:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* MUSIC RESPONSIVE */
@media (max-width: 1024px) {
  .tgsn-featured-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tgsn-featured-artwork {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .tgsn-music-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .tgsn-stat-card {
    padding: 1rem;
  }
  
  .tgsn-stat-number {
    font-size: 1.75rem;
  }
  
  .tgsn-track-row {
    grid-template-columns: 60px 60px 1fr auto;
    gap: 1rem;
  }
  
  .tgsn-track-votes-compact {
    display: none;
  }
}

@media (max-width: 768px) {
  .tgsn-featured-track {
    padding: 2rem 1rem;
  }
  
  .tgsn-featured-title {
    font-size: 1.75rem;
  }
  
  .tgsn-featured-actions {
    flex-direction: column;
  }
  
  .tgsn-featured-btn {
    width: 100%;
    justify-content: center;
  }
  
  .tgsn-music-library {
    padding: 0 1rem 2rem;
  }
  
  .tgsn-music-filters {
    justify-content: center;
  }
  
  .tgsn-music-stats-strip {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
  
  .tgsn-stat-number {
    font-size: 1.5rem;
  }
  
  .tgsn-stat-label {
    font-size: 0.6rem;
  }
  
  .tgsn-sticky-filters {
    top: 60px;
  }
  
  .tgsn-track-row {
    grid-template-columns: 50px 50px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .tgsn-rank-number {
    font-size: 1rem;
  }
  
  .tgsn-track-artwork {
    width: 50px;
    height: 50px;
  }
  
  .tgsn-track-votes-compact,
  .tgsn-track-actions-compact {
    display: none;
  }
}

/* MERCH SECTION STYLES */
/* ═══════════════════════════════════════════════════════════════
   MERCH SECTION — Electric Editorial
   ═══════════════════════════════════════════════════════════════ */

/* ── MERCH SECTION ───────────────────────────────────────────────────────── */
.tgsn-merch-section {
  padding: 1.5rem 1.25rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tgsn-merch-section {
    padding: 2rem 3rem 6rem;
  }
}

/* OWNER BAR — botón + texto minimal encima del grid */
.tgsn-merch-owner-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tgsn-merch-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.tgsn-merch-add-btn:hover {
  background: #ff2222;
  transform: scale(1.08);
}

.tgsn-merch-add-btn__plus {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 300;
}

.tgsn-merch-add-btn__label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.tgsn-merch-empty-owner {
  padding: 2rem 0;
}

.tgsn-merch-empty-owner__text {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

/* GRID — 2 col mobile, 4 col fijas desktop, proporción equilibrada */
.tgsn-merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.875rem;
  row-gap: 2.25rem;
  align-items: start;
}

@media (min-width: 640px) {
  .tgsn-merch-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.25rem;
    row-gap: 3rem;
    align-items: start;
  }
}

/* CARD */
.tgsn-merch-card {
  position: relative;
  background: transparent;
  cursor: pointer;
}

/* VISUAL — ratio 4:5, más ancho que alto, punto medio entre cuadrado y portrait */
.tgsn-merch-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0d0d;
}

.tgsn-merch-visual--empty { background: #0d0d0d; }

.tgsn-merch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
  filter: brightness(0.9) saturate(0.88);
}

.tgsn-merch-card:hover .tgsn-merch-img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(0.75);
}

/* Overlay — icono ↗ en esquina inferior derecha al hover */
.tgsn-merch-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.6rem;
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 2;
  pointer-events: none;
}

.tgsn-merch-card:hover .tgsn-merch-visual-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Icono ↗ minimal */
.tgsn-merch-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.tgsn-merch-icon-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* EDIT BTN — esquina superior derecha, solo en owner mode */
.tgsn-merch-edit-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 4;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(221, 11, 2, 0.75);
  border: none;
  color: #fff;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.15s ease;
}

.tgsn-merch-card:hover .tgsn-merch-edit-btn {
  opacity: 1;
}

.tgsn-merch-edit-btn:hover {
  background: var(--accent);
}

/* TAG — esquina superior izquierda, muy discreta */
.tgsn-merch-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.18rem 0.4rem;
  line-height: 1;
}

.tgsn-merch-tag--featured { background: var(--accent); color: #fff; }
.tgsn-merch-tag--new      { background: #fff; color: #000; }
.tgsn-merch-tag--limited  {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}
.tgsn-merch-tag--capsule  {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}
.tgsn-merch-tag--digital  {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.38);
}

/* PRICE PILL — no visible en card */
.tgsn-merch-price-pill { display: none; }

/* BODY — nombre mínimo bajo la imagen */
.tgsn-merch-body {
  padding: 0.5rem 0 0;
  background: transparent;
  min-height: 2.4rem;
}

.tgsn-merch-name {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── MERCH MODAL ─────────────────────────────────────────────────────────── */
.tgsn-merch-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: merch-backdrop-in 0.2s ease;
}

@keyframes merch-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tgsn-merch-modal {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 520px;
  width: 100%;
  display: grid;
  grid-template-columns: 11fr 13fr;
  animation: merch-modal-in 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}

@keyframes merch-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .tgsn-merch-modal {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .tgsn-merch-modal__img-wrap {
    aspect-ratio: 4 / 3;
  }
}

.tgsn-merch-modal__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.tgsn-merch-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tgsn-merch-modal__content {
  padding: 2rem 1.75rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tgsn-merch-modal__eyebrow {
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 1rem;
}

.tgsn-merch-modal__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.tgsn-merch-modal__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: auto;
  padding-bottom: 1.75rem;
}

.tgsn-merch-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tgsn-merch-modal__action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  width: 100%;
}

.tgsn-merch-modal__action:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.tgsn-merch-modal__action-icon {
  font-size: 0.75rem;
  opacity: 0.6;
}

.tgsn-merch-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.15s ease;
}

.tgsn-merch-modal__close:hover { color: rgba(255, 255, 255, 0.8); }

/* Sin imagen */
.tgsn-merch-visual--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.02) 8px,
    rgba(255, 255, 255, 0.02) 9px
  );
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .tgsn-merch-section {
    padding: 1.5rem 1rem 3rem;
  }
  .tgsn-merch-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.625rem;
    row-gap: 1.75rem;
    align-items: start;
  }
  .tgsn-merch-name {
    font-size: 0.62rem;
  }
  .tgsn-merch-grid--owner .tgsn-merch-drag-handle {
    opacity: 0.6;
  }
}

/* ── MERCH: precio en card ───────────────────────────────────────────────── */
.tgsn-merch-price {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 0.18rem;
}

/* ── MERCH: drag handle ──────────────────────────────────────────────────── */
.tgsn-merch-drag-handle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: grab;
  opacity: 0;
  transition: opacity 0.18s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
  touch-action: none;
}
.tgsn-merch-drag-handle span {
  display: block;
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,0.55);
  border-radius: 1px;
}
.tgsn-merch-grid--owner .tgsn-merch-card:hover .tgsn-merch-drag-handle {
  opacity: 1;
}
.tgsn-merch-card--dragging {
  opacity: 0.4;
  outline: 1px dashed rgba(255,255,255,0.2);
}
.tgsn-merch-card--over {
  outline: 1px solid rgba(255,255,255,0.35);
}
.tgsn-merch-card--new {
  animation: merch-card-appear 0.5s cubic-bezier(0.22,0.61,0.36,1);
}
@keyframes merch-card-appear {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.tgsn-merch-card--removing {
  animation: merch-card-remove 0.28s ease forwards;
}
@keyframes merch-card-remove {
  to { opacity: 0; transform: scale(0.9); }
}

/* ── MERCH: reorder hint ─────────────────────────────────────────────────── */
.tgsn-merch-reorder-hint {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.3s;
}
.tgsn-merch-reorder-hint--saved {
  color: rgba(120, 220, 120, 0.7);
}

/* ── MERCH CRUD DRAWER ─────────────────────────────────────────────────────── */
.merch-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: merch-backdrop-in 0.18s ease;
}
.merch-drawer-backdrop--out {
  animation: merch-backdrop-out 0.2s ease forwards;
}
@keyframes merch-backdrop-out {
  to { opacity: 0; }
}

@media (min-width: 600px) {
  .merch-drawer-backdrop { align-items: center; }
}

.merch-drawer {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  animation: merch-drawer-in 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 600px) {
  .merch-drawer { border-radius: 12px; max-height: 86vh; }
}
@keyframes merch-drawer-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.merch-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.merch-drawer__title {
  font-family: var(--font-display, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.merch-drawer__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  transition: color 0.15s;
  border-radius: 4px;
}
.merch-drawer__close:hover { color: rgba(255, 255, 255, 0.8); }

.merch-drawer__body {
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
}

/* Image preview */
.merch-drawer__preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.merch-drawer__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-drawer__form {
  padding: 1.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.merch-drawer__section-label {
  font-family: var(--font-display);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.25rem;
}
.merch-drawer__form .merch-drawer__section-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.merch-drawer__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.merch-drawer__label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.merch-drawer__label--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.merch-drawer__required { color: rgba(255, 80, 80, 0.75); }

.merch-drawer__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  padding: 0.58rem 0.72rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  -webkit-appearance: none;
}
.merch-drawer__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
}
.merch-drawer__textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}
.merch-drawer__select { cursor: pointer; }
.merch-drawer__checkbox {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: rgba(255,255,255,0.7);
  cursor: pointer;
}

.merch-drawer__error {
  font-size: 0.78rem;
  color: rgba(255, 80, 80, 0.9);
  padding: 0.55rem 0.8rem;
  background: rgba(255, 60, 60, 0.07);
  border-radius: 5px;
  border: 1px solid rgba(255, 60, 60, 0.16);
  line-height: 1.4;
}

.merch-drawer__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.merch-drawer__btn {
  border: none;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.72rem 1.5rem;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.merch-drawer__btn:disabled { opacity: 0.45; cursor: not-allowed; }
.merch-drawer__btn--save {
  background: rgba(255, 255, 255, 0.94);
  color: #000;
  margin-left: auto;
}
.merch-drawer__btn--save:hover:not(:disabled) { background: #fff; }
.merch-drawer__btn--delete {
  background: transparent;
  color: rgba(255, 80, 80, 0.65);
  border: 1px solid rgba(255, 80, 80, 0.2);
}
.merch-drawer__btn--delete:hover:not(:disabled) {
  color: rgba(255, 80, 80, 1);
  border-color: rgba(255, 80, 80, 0.45);
}
.merch-drawer__btn--delete-confirm {
  color: rgba(255, 80, 80, 1) !important;
  border-color: rgba(255, 80, 80, 0.6) !important;
  background: rgba(255, 40, 40, 0.08) !important;
}

.tgsn-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

body.lightbox-open {
  overflow: hidden;
}

.tgsn-lightbox[hidden] {
  display: none;
}

.tgsn-lightbox-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
}

.tgsn-lightbox-dialog {
  position: relative;
  width: min(100%, 1200px);
  height: min(100%, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgsn-lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgsn-lightbox-image {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.tgsn-lightbox-close,
.tgsn-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 12, 0.7);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tgsn-lightbox-close:hover,
.tgsn-lightbox-nav:hover {
  background: rgba(221, 11, 2, 0.9);
  border-color: rgba(221, 11, 2, 0.95);
}

.tgsn-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.tgsn-lightbox-nav {
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.tgsn-lightbox-nav--prev {
  left: 1rem;
}

.tgsn-lightbox-nav--next {
  right: 1rem;
}

.tgsn-lightbox-close .material-symbols-outlined,
.tgsn-lightbox-nav .material-symbols-outlined {
  font-size: 28px;
}

@media (max-width: 768px) {
  .tgsn-lightbox-backdrop {
    padding: 1rem;
  }

  .tgsn-lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 42px;
    height: 42px;
  }

  .tgsn-lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .tgsn-lightbox-nav--prev {
    left: 0.25rem;
  }

  .tgsn-lightbox-nav--next {
    right: 0.25rem;
  }
}

/* ARTISTA SECTION - HOME/SUMMARY */
.tgsn-artist-section {
  padding: 2rem 3rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.tgsn-artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tgsn-preview-block {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.tgsn-preview-block--wide {
  grid-column: 1 / -1;
}

.tgsn-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tgsn-preview-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin: 0;
}

.tgsn-preview-title .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}

.tgsn-preview-cta {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-preview-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* TOP TRACKS PREVIEW */
.tgsn-top-tracks-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tgsn-track-mini {
  display: grid;
  grid-template-columns: 35px 40px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.tgsn-track-mini:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(221, 11, 2, 0.2);
}

.tgsn-track-rank-mini {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
}

.tgsn-track-thumb-mini {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 3px;
}

.tgsn-track-info-mini {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tgsn-track-name-mini {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.tgsn-track-plays-mini {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.tgsn-track-votes-mini {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* EVENTS PREVIEW */
.tgsn-events-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tgsn-event-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tgsn-event-date-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.tgsn-event-day-mini {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.tgsn-event-month-mini {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.tgsn-event-info-mini {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.tgsn-event-venue-mini {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.tgsn-event-location-mini {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* EMPTY STATE MINI */
.tgsn-empty-state-mini {
  text-align: center;
  padding: 2rem 1rem;
}

.tgsn-empty-state-mini p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.tgsn-empty-btn-mini {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: none;
  color: white;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-empty-btn-mini:hover {
  background: #ff1a1a;
  box-shadow: 0 4px 15px rgba(221, 11, 2, 0.3);
}

/* SHORT BIO */
.tgsn-bio-short {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1rem;
}

.tgsn-bio-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tgsn-meta-tag {
  padding: 0.4rem 0.8rem;
  background: rgba(221, 11, 2, 0.15);
  border: 1px solid rgba(221, 11, 2, 0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tgsn-meta-dot {
  color: rgba(255, 255, 255, 0.3);
}

.tgsn-meta-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* GALLERY PREVIEW */
.tgsn-gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tgsn-gallery-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
}

.tgsn-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.tgsn-gallery-thumb:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.tgsn-gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tgsn-gallery-thumb:hover .tgsn-gallery-thumb-overlay {
  opacity: 1;
}

/* BOOKING CTA BAR */
.tgsn-booking-cta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(221, 11, 2, 0.1) 0%, rgba(18, 18, 18, 0.8) 100%);
  border: 1px solid rgba(221, 11, 2, 0.2);
  border-left: 3px solid var(--accent);
}

.tgsn-booking-cta-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tgsn-booking-cta-content .material-symbols-outlined {
  font-size: 32px;
  color: var(--accent);
}

.tgsn-booking-cta-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.25rem;
}

.tgsn-booking-cta-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.tgsn-booking-cta-btn {
  padding: 1rem 2rem;
  background: var(--accent);
  border: none;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tgsn-booking-cta-btn:hover {
  background: #ff1a1a;
  box-shadow: 0 4px 20px rgba(221, 11, 2, 0.4);
}

/* ARTISTA RESPONSIVE */
@media (max-width: 1024px) {
  .tgsn-artist-grid {
    grid-template-columns: 1fr;
  }
  
  .tgsn-preview-block--wide {
    grid-column: 1;
  }
  
  .tgsn-gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tgsn-artist-section {
    padding: 1.5rem 1rem;
  }
  
  .tgsn-preview-block {
    padding: 1rem;
  }
  
  .tgsn-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .tgsn-track-mini {
    grid-template-columns: 30px 35px 1fr;
    gap: 0.5rem;
  }
  
  .tgsn-track-votes-mini {
    display: none;
  }
  
  .tgsn-gallery-preview {
    grid-template-columns: 1fr;
  }
  
  .tgsn-booking-cta-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .tgsn-booking-cta-content {
    flex-direction: column;
  }
  
  .tgsn-booking-cta-btn {
    width: 100%;
  }
}

/* ── Agenda: tour year dropdown ──────────────────────────────────────────── */
.tgsn-tour-badge--btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.tgsn-tour-badge--btn:hover { background: rgba(255,255,255,0.06); }
.tgsn-tour-chevron {
  font-size: 16px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.tgsn-tour-badge--btn[aria-expanded="true"] .tgsn-tour-chevron { transform: rotate(180deg); }

.tgsn-tour-stats-bar { position: relative; }
.tgsn-tour-stats-inner { position: relative; display: inline-block; }

.tgsn-year-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 2px solid rgba(255,200,0,0.4); /* DEBUG: yellow border - remove after verify */
  border-radius: 6px;
  padding: 0.4rem 0;
  z-index: 50;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.tgsn-year-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.45rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tgsn-year-option:hover { background: rgba(255,255,255,0.06); color: #fff; }
.tgsn-year-option.is-selected { color: var(--accent); }

.tgsn-year-chip {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tgsn-year-chip:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.tgsn-year-chip.is-active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ── Agenda: ver más button ──────────────────────────────────────────────── */
.tgsn-ver-mas-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0.5rem;
}
.tgsn-ver-mas-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.6rem 2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tgsn-ver-mas-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

/* ── Agenda: Histórico Destacado ─────────────────────────────────────────── */
.tgsn-historico-destacado {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.tgsn-destacado-heading {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 1rem;
}
.tgsn-destacado-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .tgsn-destacado-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .tgsn-destacado-grid { grid-template-columns: repeat(2, 1fr); }
}
.tgsn-destacado-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0e0e0e center/cover no-repeat;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.tgsn-destacado-card:hover .tgsn-destacado-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
}
.tgsn-destacado-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  transition: background 0.25s;
}
.tgsn-destacado-content {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tgsn-destacado-label {
  display: inline-block;
  align-self: flex-start;
  background: #e8323a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.3rem;
}
.tgsn-destacado-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.tgsn-destacado-meta {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin: 0;
  text-transform: uppercase;
}
.tgsn-destacado-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.tgsn-destacado-cta:hover { color: #fff; }
.tgsn-destacado-cta .material-symbols-outlined { font-size: 15px; }

/* ── Agenda: historico header ────────────────────────────────────────────── */
.tgsn-historico-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.tgsn-historico-header .tgsn-agenda-section-title {
  margin: 0;
  align-self: flex-start;
}

/* ── Agenda: year filter row (right-aligned) ─────────────────────────────── */
.tgsn-year-filter {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* ── Agenda: month filter row (right-aligned, below year) ───────────────── */
.tgsn-month-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  width: 100%;
  margin-top: 0;
}
.tgsn-month-chip {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0.18rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tgsn-month-chip:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.tgsn-month-chip.is-active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   DJCLUB GLOBAL NAV (reemplaza tgsn-sticky-header)
═══════════════════════════════════════════════════════ */
.djclub-global-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.djclub-global-nav__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.djclub-global-nav__brand {
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--accent, #DD0B02);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.djclub-global-nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.djclub-global-nav__links a {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(229, 226, 207, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.djclub-global-nav__links a:hover {
  color: var(--accent, #DD0B02);
}

.djclub-global-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.djclub-global-nav__actions button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(229, 226, 207, 0.7);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.djclub-global-nav__actions button:hover {
  color: var(--accent, #DD0B02);
  border-color: rgba(221, 11, 2, 0.4);
  background: rgba(221, 11, 2, 0.06);
}

@media (max-width: 768px) {
  .djclub-global-nav__links {
    display: none;
  }
  .djclub-global-nav__inner {
    padding-inline: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   ARTIST ZONE — LOWER SECTION (2 columnas: galería + sobre)
═══════════════════════════════════════════════════════ */
.tgsn-artist-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-inline: 32px;
  max-width: 1440px;
  margin-inline: auto;
  margin-top: 1.5rem;
}

/* GALERÍA */
.tgsn-artist-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.tgsn-gallery-featured {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.04);
}

.tgsn-gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tgsn-gallery-featured:hover img {
  transform: scale(1.03);
}

.tgsn-gallery-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.tgsn-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.tgsn-gallery-thumb-sm {
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.tgsn-gallery-thumb-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tgsn-gallery-thumb-sm:hover img {
  transform: scale(1.06);
}

/* SOBRE EL ARTISTA */
.tgsn-artist-about {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.025);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.tgsn-about-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.tgsn-about-title {
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(229, 226, 207, 0.95);
  margin: 0;
}

.tgsn-about-bio {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(229, 226, 207, 0.62);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tgsn-about-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tgsn-about-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(229, 226, 207, 0.55);
}

.tgsn-about-meta-item .material-symbols-outlined {
  font-size: 0.95rem;
  color: rgba(229, 226, 207, 0.35);
}

.tgsn-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tgsn-about-tag {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(229, 226, 207, 0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.2em 0.55em;
}

/* RRSS */
.tgsn-about-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tgsn-about-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(229, 226, 207, 0.45);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tgsn-about-social-link:hover {
  color: #DD0B02;
  border-color: rgba(221, 11, 2, 0.45);
  background: rgba(221, 11, 2, 0.06);
}

@media (max-width: 900px) {
  .tgsn-artist-lower {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   DJCLUB GLOBAL FOOTER
═══════════════════════════════════════════════════════ */
.djclub-global-footer {
  background: var(--bg-surface, #111);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 5rem;
}

.djclub-global-footer__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 3rem 32px 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.djclub-global-footer__logo {
  display: block;
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--accent, #DD0B02);
  margin-bottom: 0.75rem;
}

.djclub-global-footer__brand p {
  font-size: 0.78rem;
  color: rgba(229, 226, 207, 0.45);
  line-height: 1.6;
  max-width: 24ch;
}

.djclub-global-footer__col h4 {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(229, 226, 207, 0.5);
  margin-bottom: 1rem;
}

.djclub-global-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.djclub-global-footer__col a {
  font-size: 0.8rem;
  color: rgba(229, 226, 207, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.djclub-global-footer__col a:hover {
  color: rgba(229, 226, 207, 0.9);
}

.djclub-global-footer__bottom {
  max-width: 1440px;
  margin-inline: auto;
  padding: 1.25rem 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  color: rgba(229, 226, 207, 0.3);
  text-align: center;
}

@media (max-width: 900px) {
  .djclub-global-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .djclub-global-footer__inner {
    grid-template-columns: 1fr;
    padding: 2rem 20px 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   GALLERY — botón featured + icono zoom
═══════════════════════════════════════════════════════ */
.tgsn-gallery-featured {
  all: unset;
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.04);
  cursor: zoom-in;
  width: 100%;
}

.tgsn-gallery-thumb-sm {
  all: unset;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  cursor: zoom-in;
  width: 100%;
}

.tgsn-gallery-zoom {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  padding: 0.2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.tgsn-gallery-featured:hover .tgsn-gallery-zoom {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   TOP TRACKS — play button
═══════════════════════════════════════════════════════ */
.tgsn-track-play-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: rgba(229, 226, 207, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tgsn-track-play-btn:hover {
  background: rgba(221, 11, 2, 0.12);
  color: #DD0B02;
  border-color: rgba(221, 11, 2, 0.4);
}

.tgsn-track-play-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════
   EVENT MINI — botón estilo
═══════════════════════════════════════════════════════ */
.tgsn-event-mini {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.15s;
  border-radius: 3px;
}

.tgsn-event-mini:last-child {
  border-bottom: none;
}

.tgsn-event-mini:hover {
  background: rgba(255,255,255,0.03);
  padding-inline: 0.5rem;
}

.tgsn-event-arrow-mini {
  margin-left: auto;
  font-size: 1rem;
  color: rgba(229, 226, 207, 0.25);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   DJCLUB LIGHTBOX (galería artista zone)
═══════════════════════════════════════════════════════ */
.djclub-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.djclub-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.djclub-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.djclub-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.djclub-lightbox.is-open .djclub-lightbox__content {
  transform: scale(1);
}

.djclub-lightbox__content img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

.djclub-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: rgba(229, 226, 207, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.djclub-lightbox__close:hover {
  background: rgba(221, 11, 2, 0.8);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   DJCLUB MUSIC PLAYER MODAL
═══════════════════════════════════════════════════════ */
.djclub-player-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

@media (min-width: 600px) {
  .djclub-player-modal {
    align-items: center;
  }
}

.djclub-player-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.djclub-player-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.djclub-player-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

@media (min-width: 600px) {
  .djclub-player-modal__panel {
    border-radius: 6px;
    transform: translateY(8px) scale(0.97);
  }
}

.djclub-player-modal.is-open .djclub-player-modal__panel {
  transform: translateY(0) scale(1);
}

.djclub-player-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.djclub-player-modal__platform {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #DD0B02);
  margin-bottom: 0.25rem;
  display: block;
}

.djclub-player-modal__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(229, 226, 207, 0.9);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42ch;
}

.djclub-player-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: transparent;
  color: rgba(229,226,207,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.djclub-player-modal__close:hover {
  background: rgba(221, 11, 2, 0.15);
  color: #DD0B02;
}

.djclub-player-modal__embed {
  padding: 1.25rem 1.5rem 1.5rem;
  background: #080808;
}

.djclub-player-modal__embed iframe {
  display: block;
  border-radius: 3px;
}

.djclub-player-external-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent, #DD0B02);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 0;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   DJCLUB EVENT DETAIL MODAL
═══════════════════════════════════════════════════════ */
.djclub-event-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.djclub-event-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.djclub-event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}

.djclub-event-modal__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.25s ease;
}

.djclub-event-modal.is-open .djclub-event-modal__panel {
  transform: scale(1) translateY(0);
}

.djclub-event-modal__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: rgba(229,226,207,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.djclub-event-modal__close:hover {
  background: rgba(221, 11, 2, 0.8);
  color: #fff;
}

.djclub-event-modal__image-wrap {
  aspect-ratio: 16/7;
  overflow: hidden;
}

.djclub-event-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.djclub-event-modal__body {
  padding: 1.5rem;
}

.djclub-event-modal__date {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.emd-day {
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(229, 226, 207, 0.9);
  line-height: 1;
}

.emd-month {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #DD0B02);
}

.djclub-event-modal__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(229, 226, 207, 0.95);
  margin: 0 0 0.625rem;
  line-height: 1.25;
}

.djclub-event-modal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(229, 226, 207, 0.5);
  margin-bottom: 1rem;
}

.emd-sep {
  color: rgba(255,255,255,0.2);
}

.emd-price {
  color: rgba(229, 226, 207, 0.8);
  font-weight: 700;
}

.djclub-event-modal__desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(229, 226, 207, 0.52);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   UNIFICACIÓN VISUAL CAJAS — artist zone
   Alinear .tgsn-preview-block con el tono de música/agenda
═══════════════════════════════════════════════════════ */
.tgsn-preview-block {
  background: rgba(14, 14, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 3px;
}

.tgsn-artist-about {
  background: rgba(14, 14, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

/* Unify track rows dentro de preview block */
.tgsn-track-mini {
  border-bottom-color: rgba(255,255,255,0.045);
}

/* Reducir la separación visual booking CTA */
.tgsn-booking-cta-bar {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   ABOUT BIO — leer más
═══════════════════════════════════════════════════════ */
.tgsn-about-bio-ellipsis {
  color: rgba(229, 226, 207, 0.3);
}

.tgsn-about-readmore {
  all: unset;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(229, 226, 207, 0.38);
  cursor: pointer;
  border-bottom: 1px solid rgba(229, 226, 207, 0.15);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: -0.25rem;
}

.tgsn-about-readmore:hover {
  color: var(--accent, #DD0B02);
  border-color: rgba(221, 11, 2, 0.4);
}

/* ═══════════════════════════════════════════════════════
   ACTIVITY STRIP
═══════════════════════════════════════════════════════ */
.tgsn-activity-strip {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 32px;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
}

.tgsn-activity-strip::before,
.tgsn-activity-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 1;
  pointer-events: none;
}

.tgsn-activity-strip::before {
  left: 32px;
  background: linear-gradient(to right, var(--bg-dark, #0c0c0c), transparent);
}

.tgsn-activity-strip::after {
  right: 32px;
  background: linear-gradient(to left, var(--bg-dark, #0c0c0c), transparent);
}

.tgsn-activity-strip__track {
  display: flex;
  gap: 0;
  animation: activityScroll 28s linear infinite;
  width: max-content;
}

.tgsn-activity-strip__track:hover {
  animation-play-state: paused;
}

@keyframes activityScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tgsn-activity-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
  flex-shrink: 0;
}

.tgsn-activity-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tgsn-activity-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(229, 226, 207, 0.65);
}

.tgsn-activity-sub {
  font-size: 0.65rem;
  color: rgba(229, 226, 207, 0.3);
  letter-spacing: 0.06em;
}

.tgsn-activity-sub::before {
  content: '·';
  margin-right: 0.4rem;
  color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .tgsn-activity-strip {
    padding-inline: 0;
  }
  .tgsn-activity-strip::before {
    left: 0;
  }
  .tgsn-activity-strip::after {
    right: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   REFINAMIENTO FINAL — ARTISTA ZONE
═══════════════════════════════════════════════════════ */

/* 1. Grid superior asimétrico: Top Tracks más protagonista */
.tgsn-artist-grid {
  grid-template-columns: 3fr 2fr;
}

@media (max-width: 768px) {
  .tgsn-artist-grid {
    grid-template-columns: 1fr;
  }
}

/* 2. Reducir bordes — menos wireframe, más capas tonales */
.tgsn-preview-block {
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 3px;
}

.tgsn-preview-header {
  border-bottom-color: rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
}

.tgsn-artist-about {
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* 3. Top Tracks — padding más generoso para dar protagonismo */
.tgsn-preview-block--tracks {
  padding: 1.5rem 1.5rem 1.25rem;
}

/* 4. Eventos — más compacto, padding reducido */
.tgsn-preview-block--events {
  padding: 1.25rem 1.25rem 1rem;
}

.tgsn-preview-block--events .tgsn-event-mini {
  padding-block: 0.6rem;
}

.tgsn-preview-block--events .tgsn-preview-title {
  font-size: 0.7rem;
}

/* 5. Galería duo — 2 imágenes grandes apiladas */
.tgsn-gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.tgsn-gallery-duo__main,
.tgsn-gallery-duo__second {
  all: unset;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.03);
  cursor: zoom-in;
  width: 100%;
}

.tgsn-gallery-duo__main img,
.tgsn-gallery-duo__second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tgsn-gallery-duo__main:hover img,
.tgsn-gallery-duo__second:hover img {
  transform: scale(1.04);
}

.tgsn-gallery-duo__main .tgsn-gallery-zoom,
.tgsn-gallery-duo__second .tgsn-gallery-zoom {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 0.2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.tgsn-gallery-duo__main:hover .tgsn-gallery-zoom,
.tgsn-gallery-duo__second:hover .tgsn-gallery-zoom {
  opacity: 1;
}

/* 6. Activity strip — velocidad reducida (44s en lugar de 28s) */
.tgsn-activity-strip__track {
  animation-duration: 44s;
}

/* ═══════════════════════════════════════════════════════
   TÍTULOS CLICABLES — elimina botones secundarios
═══════════════════════════════════════════════════════ */
.tgsn-preview-title--link,
.tgsn-about-title--link {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-family: inherit;
}

.tgsn-preview-title--link {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(229, 226, 207, 0.65);
  transition: color 0.2s ease;
}

.tgsn-preview-title--link:hover {
  color: rgba(229, 226, 207, 0.95);
}

.tgsn-about-title--link {
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(229, 226, 207, 0.75);
  transition: color 0.2s ease;
}

.tgsn-about-title--link:hover {
  color: rgba(229, 226, 207, 0.95);
}

.tgsn-preview-title-arrow {
  font-size: 1rem;
  color: rgba(229, 226, 207, 0.22);
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 0.1rem;
}

.tgsn-preview-title--link:hover .tgsn-preview-title-arrow,
.tgsn-about-title--link:hover .tgsn-preview-title-arrow {
  color: var(--accent, #DD0B02);
  transform: translateX(3px);
}

/* El preview-header sin botón secundario no necesita space-between */
.tgsn-preview-header {
  justify-content: flex-start;
}

/* ═══════════════════════════════════════════════════════
   BOOKING CTA — más compacto
═══════════════════════════════════════════════════════ */
.tgsn-booking-cta-bar {
  padding: 0.875rem 1.5rem;
  margin-top: 1.25rem;
}

.tgsn-booking-cta-content .material-symbols-outlined {
  font-size: 22px;
}

.tgsn-booking-cta-content strong {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.tgsn-booking-cta-content p {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   HERO CARD — ligeramente más espacio interior
═══════════════════════════════════════════════════════ */
.tgsn-hero-content {
  max-width: 520px;
  padding: 32px 36px;
}

/* ═══════════════════════════════════════════════════════
   GALERÍA DUO — aspect-ratio más panorámico
═══════════════════════════════════════════════════════ */
.tgsn-gallery-duo__main,
.tgsn-gallery-duo__second {
  aspect-ratio: 4/5;
}

/* ═══════════════════════════════════════════════════════
   IDENTIDAD — bio sin truncado, géneros sin meta duplicado
═══════════════════════════════════════════════════════ */
.tgsn-about-bio {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(229, 226, 207, 0.6);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   RRSS TEXTO EDITORIAL
═══════════════════════════════════════════════════════ */
.tgsn-about-socials-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tgsn-social-text-link {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 226, 207, 0.38);
  text-decoration: none;
  transition: color 0.18s ease;
}

.tgsn-social-text-link:hover {
  color: #DD0B02;
}

.tgsn-social-sep {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.15);
  user-select: none;
}

/* ═══════════════════════════════════════════════════════
   TOP TRACKS — like button
═══════════════════════════════════════════════════════ */
.tgsn-track-like-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: rgba(229, 226, 207, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: color 0.18s ease, transform 0.15s ease;
}

.tgsn-track-like-btn .material-symbols-outlined {
  font-size: 1rem;
}

.tgsn-track-like-btn:hover {
  color: rgba(221, 11, 2, 0.7);
  transform: scale(1.15);
}

.tgsn-track-like-btn.is-liked {
  color: #DD0B02;
}

.tgsn-track-like-btn.is-liked:hover {
  color: rgba(221, 11, 2, 0.65);
  transform: scale(0.95);
}

/* ═══════════════════════════════════════════════════════
   HERO — glow suave detrás del card
═══════════════════════════════════════════════════════ */
.tgsn-hero-content {
  box-shadow: 0 0 60px 20px rgba(0, 0, 0, 0.45);
}

/* ═══════════════════════════════════════════════════════
   ACTIVITY STRIP — pausa en hover (ya aplicado en JS
   pero reforzado con CSS para mayor compatibilidad)
═══════════════════════════════════════════════════════ */
.tgsn-activity-strip:hover .tgsn-activity-strip__track {
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════
   REFINAMIENTO FINAL — MICRO UX
═══════════════════════════════════════════════════════ */

/* 1. Track mini — grid con 5 cols explícitas: rank · thumb · info · like · play */
.tgsn-track-mini {
  grid-template-columns: 28px 36px 1fr 28px 34px;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 3px;
  border-color: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tgsn-track-mini:hover {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 3px 0 0 rgba(221, 11, 2, 0.5);
  border-color: transparent;
}

.tgsn-track-thumb-mini {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.tgsn-track-mini:hover .tgsn-track-thumb-mini {
  transform: scale(1.08);
}

.tgsn-track-rank-mini {
  font-size: 0.78rem;
  text-align: center;
}

/* 2. Galería duo — aspect-ratio más rectangular/editorial */
.tgsn-gallery-duo__main,
.tgsn-gallery-duo__second {
  aspect-ratio: 3/4;
}

/* Thumbs inferiores ligeramente más altos */
.tgsn-gallery-thumb-sm {
  aspect-ratio: 1/1;
}

/* 3. Booking CTA — reducir peso visual */
.tgsn-booking-cta-bar {
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  border-left-width: 2px;
}

.tgsn-booking-cta-content {
  gap: 0.75rem;
}

.tgsn-booking-cta-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

/* === GALERÍA STRIP — fila horizontal 3 imágenes iguales === */
.tgsn-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.tgsn-gallery-strip__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.tgsn-gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.tgsn-gallery-strip__item:hover img {
  transform: scale(1.04);
}

.tgsn-gallery-strip__item .tgsn-gallery-zoom {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.tgsn-gallery-strip__item:hover .tgsn-gallery-zoom {
  opacity: 1;
}

/* === AJUSTES FINALES MÍNIMOS === */

/* 1. Top Tracks — más respiración vertical */
.tgsn-track-mini {
  padding: 0.75rem 0.75rem;
  gap: 0.7rem;
}

/* 2. Booking CTA — algo más de cuerpo, sin volver al tamaño previo */
.tgsn-booking-cta-bar {
  padding: 1.1rem 2rem;
}

/* 3. Activity Strip — bajar brillo de icono y texto */
.tgsn-activity-icon {
  opacity: 0.55;
}

.tgsn-activity-text {
  color: rgba(229, 226, 207, 0.45);
}

.tgsn-activity-sub {
  color: rgba(229, 226, 207, 0.22);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px) + TABLET (769–1024px)
   Objetivo: experiencia editorial premium, no desktop apilado
═══════════════════════════════════════════════════════ */

/* ─── MOBILE ≤768px ─────────────────────────────────── */
@media (max-width: 768px) {

  /* Contener overflow horizontal global — solo en mobile */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Wrapper raíz — no usar clip aquí porque rompe el sticky de las tabs */
  #profile-detail-root {
    width: 100%;
    max-width: 100vw;
  }

  /* Resetear padding amplio en sección raíz */
  .tgsn-artist-section {
    padding: 0 0 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Anular padding-inline global en contenedores que lo heredan */
  .tgsn-unified-layout,
  .tgsn-bio-tabs,
  .tgsn-sticky-header {
    padding-inline: 0;
    margin-inline: 0;
    max-width: 100%;
  }

  /* ── NAV ──────────────────────────────────────────── */
  .djclub-global-nav__links {
    display: none;
  }

  .djclub-global-nav__inner {
    padding-inline: 16px;
    height: 50px;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ── HERO — compacto, card protagonista ───────────── */
  .tgsn-hero-fullwidth {
    height: 300px;
    max-width: 100%;
    overflow: hidden;
  }

  .tgsn-hero-inner {
    padding: 0 14px 14px;
    align-items: flex-end;
    box-sizing: border-box;
    max-width: 100%;
  }

  .tgsn-hero-content {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
  }

  .tgsn-hero-eyebrow {
    display: none;
  }

  .tgsn-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    margin-bottom: 0.35rem;
  }

  .tgsn-hero-meta-row {
    margin-bottom: 0.35rem;
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  .tgsn-hero-stats-row {
    display: none;
  }

  .tgsn-hero-details {
    font-size: 0.68rem;
    gap: 0.4rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
  }

  .tgsn-hero-actions {
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  .tgsn-hero-btn-share {
    display: none;
  }

  /* ── TABS — scroll horizontal interno, sin escape al body ── */

  /* Contenedor tabs: ancho exacto del viewport, sin padding extra */
  .tgsn-bio-tabs {
    /* Anular el padding-inline: 32px heredado de la regla global */
    padding-inline: 0 !important;
    padding-block: 0;
    /* Scroll solo dentro de este elemento */
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Alinear desde la izquierda */
    justify-content: flex-start;
    gap: 0;
    /* Ancho exacto del viewport */
    width: 100vw;
    max-width: 100vw;
    /* Compensar el margin-inline: auto heredado */
    margin-inline: 0;
    /* Fade lateral — requiere position relative */
    position: relative;
  }

  .tgsn-bio-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Inner padding visible con el primer tab */
  .tgsn-bio-tabs a:first-child {
    padding-left: 16px;
  }

  .tgsn-bio-tabs a {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    padding: 0.875rem 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Fade derecho — indica que hay más tabs */
  .tgsn-bio-tabs::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    flex-shrink: 0;
    background: linear-gradient(to right, transparent, rgba(15, 15, 15, 0.9));
    pointer-events: none;
    align-self: stretch;
  }

  /* ── ARTIST GRID → stack vertical, padding seguro ── */
  .tgsn-artist-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 14px 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .tgsn-preview-block {
    border-radius: 4px;
    padding-bottom: 0.25rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tgsn-preview-header {
    padding: 0.75rem 0.875rem 0.5rem;
  }

  .tgsn-preview-title {
    font-size: 0.66rem;
  }

  .tgsn-top-tracks-preview,
  .tgsn-events-preview {
    padding: 0 0.125rem 0.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* ── TOP TRACKS — flex táctil, sin ranking ────────── */
  .tgsn-track-mini {
    display: flex;
    grid-template-columns: unset;
    align-items: center;
    gap: 0.7rem;
    padding: 0.625rem 0.875rem;
    border-radius: 3px;
    min-height: 52px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tgsn-track-rank-mini {
    display: none;
  }

  .tgsn-track-thumb-mini {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 3px;
    flex-shrink: 0;
  }

  .tgsn-track-info-mini {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .tgsn-track-name-mini {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
  }

  .tgsn-track-plays-mini {
    font-size: 0.63rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tgsn-track-like-btn,
  .tgsn-track-play-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
  }

  .tgsn-track-like-btn .material-symbols-outlined,
  .tgsn-track-play-btn .material-symbols-outlined {
    font-size: 1rem;
  }

  /* ── EVENTOS — filas compactas ────────────────────── */
  .tgsn-event-mini {
    flex-direction: row;
    align-items: center;
    padding: 0.625rem 0.875rem;
    gap: 0.75rem;
    min-height: 52px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tgsn-event-date-mini {
    flex-direction: column;
    align-items: center;
    width: 36px;
    min-width: 36px;
    flex-shrink: 0;
    gap: 0;
  }

  .tgsn-event-day-mini {
    font-size: 1.2rem;
    line-height: 1;
  }

  .tgsn-event-month-mini {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .tgsn-event-info-mini {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .tgsn-event-venue-mini {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .tgsn-event-location-mini {
    font-size: 0.63rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .tgsn-event-arrow-mini {
    flex-shrink: 0;
  }

  /* ── LOWER: IDENTIDAD arriba, GALERÍA abajo ────────── */
  .tgsn-artist-lower {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 14px 0;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .tgsn-artist-about {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tgsn-artist-gallery {
    order: 2;
    width: 100%;
    /* overflow-x: clip permite slider sin propagar overflow al body */
    overflow-x: clip;
    overflow-y: visible;
  }

  /* ── GALERÍA — slider horizontal swipeable contenido ── */
  .tgsn-gallery-strip {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Sin margen negativo — el overflow queda en .tgsn-artist-gallery */
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 4px;
    width: 100%;
    box-sizing: border-box;
  }

  .tgsn-gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .tgsn-gallery-strip__item {
    flex: 0 0 72%;
    width: 72%;
    max-width: 72%;
    aspect-ratio: 3/4;
    border-radius: 4px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* ── IDENTIDAD ────────────────────────────────────── */
  .tgsn-about-bio {
    font-size: 0.8rem;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .tgsn-about-meta {
    font-size: 0.7rem;
  }

  .tgsn-about-tags {
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .tgsn-about-tag {
    font-size: 0.6rem;
    padding: 0.18rem 0.45rem;
  }

  .tgsn-about-socials-text {
    margin-top: 0.75rem;
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
    gap: 0.35rem;
    overflow: hidden;
  }

  .tgsn-social-text-link {
    white-space: nowrap;
  }

  /* ── ACTIVITY STRIP — ocultar en mobile ───────────── */
  .tgsn-activity-strip {
    display: none;
  }

  /* ── BOOKING CTA ──────────────────────────────────── */
  .tgsn-booking-cta-bar {
    margin: 1rem 14px 0;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    width: calc(100% - 28px);
    box-sizing: border-box;
  }

  .tgsn-booking-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    width: 100%;
  }

  .tgsn-booking-cta-text {
    font-size: 0.7rem;
  }

  .tgsn-booking-cta-label {
    font-size: 0.6rem;
  }

  .tgsn-booking-cta-btn {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.67rem;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ── FOOTER — compacto ────────────────────────────── */
  .djclub-global-footer {
    margin-top: 2.5rem;
    overflow: hidden;
  }

  .djclub-global-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.75rem 16px 1.25rem;
    box-sizing: border-box;
    max-width: 100%;
  }

  .djclub-global-footer__brand {
    grid-column: 1 / -1;
  }

  .djclub-global-footer__bottom {
    padding: 1rem 16px;
    font-size: 0.68rem;
    box-sizing: border-box;
  }
}

/* ─── TABLET 769px–1024px ────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

  .tgsn-hero-fullwidth {
    height: 480px;
  }

  .tgsn-hero-content {
    max-width: 400px;
    padding: 20px 24px;
  }

  .tgsn-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .tgsn-bio-tabs {
    padding: 1rem 24px;
    gap: 1.75rem;
  }

  .tgsn-artist-grid {
    grid-template-columns: 1fr 1fr;
    padding-inline: 24px;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .tgsn-artist-lower {
    padding-inline: 24px;
    gap: 1.25rem;
  }

  .tgsn-booking-cta-bar {
    margin-inline: 24px;
  }

  .tgsn-gallery-strip__item {
    aspect-ratio: 3/4;
  }

  .djclub-global-footer__inner {
    padding: 2.5rem 24px 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════
   RITMO VISUAL DESCENDENTE — desktop
   MÁS peso arriba → MENOS peso abajo
═══════════════════════════════════════════════════════ */

/* 1. IDENTIDAD — más compacta, acompaña la caída */
@media (min-width: 769px) {
  .tgsn-artist-about {
    padding: 1.125rem 1.25rem;
    gap: 0.875rem;
  }

  .tgsn-about-header {
    margin-bottom: 0;
  }

  .tgsn-about-bio {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .tgsn-about-tags {
    gap: 0.3rem;
    margin-top: 0;
  }

  .tgsn-about-tag {
    font-size: 0.6rem;
    padding: 0.18rem 0.5rem;
  }

  .tgsn-about-socials-text {
    margin-top: 0;
    font-size: 0.63rem;
    letter-spacing: 0.13em;
  }
}

/* 2. ACTIVITY STRIP — integración suave */
@media (min-width: 769px) {
  .tgsn-activity-strip {
    margin-top: 0.5rem;
    opacity: 0.78;
  }

  .tgsn-activity-text {
    color: rgba(229, 226, 207, 0.4);
  }

  .tgsn-activity-sub {
    color: rgba(229, 226, 207, 0.2);
  }
}

/* 3. CTA BOOKING — cierre editorial de la composición */
@media (min-width: 769px) {
  .tgsn-booking-cta-bar {
    /* Mismo ancho que el contenido: ocupa el 100% del padding de tgsn-artist-section */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 4px;
  }

  .tgsn-booking-cta-content .material-symbols-outlined {
    font-size: 22px;
  }
}

/* 4. TOP TRACKS — alineación perfecta ❤️ y ▶ */
@media (min-width: 769px) {
  .tgsn-track-like-btn,
  .tgsn-track-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .tgsn-track-mini:hover .tgsn-track-like-btn,
  .tgsn-track-mini:hover .tgsn-track-play-btn {
    opacity: 1;
  }

  /* Botones visibles solo al hover — más limpio en reposo */
  .tgsn-track-like-btn:not([aria-pressed="true"]) {
    opacity: 0.45;
    transition: opacity 0.2s ease;
  }

  .tgsn-track-play-btn {
    opacity: 0.45;
    transition: opacity 0.2s ease;
  }

  .tgsn-track-mini:hover .tgsn-track-like-btn,
  .tgsn-track-mini:hover .tgsn-track-play-btn {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════
   POLISH FINAL MOBILE — compactación elegante
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* 1. TOP TRACKS — 2 líneas máximo, sin corte agresivo */
  .tgsn-track-name-mini {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: unset;
    line-height: 1.35;
    font-size: 0.78rem;
  }

  /* Fila algo más alta para acomodar 2 líneas sin apretar */
  .tgsn-track-mini {
    min-height: 56px;
    align-items: flex-start;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  /* Botones alineados al centro vertical de la fila */
  .tgsn-track-like-btn,
  .tgsn-track-play-btn {
    margin-top: auto;
    margin-bottom: auto;
    align-self: center;
  }

  /* 2. IDENTIDAD — menos gaps entre elementos */
  .tgsn-artist-about {
    gap: 0.625rem;
    padding: 1rem 1rem;
  }

  .tgsn-about-tags {
    margin-top: 0;
    gap: 0.25rem;
  }

  .tgsn-about-socials-text {
    margin-top: 0.5rem;
  }

  .tgsn-about-meta {
    margin-bottom: 0;
  }

  /* 3. GALERÍA — sin margen extra, imágenes bien alineadas */
  .tgsn-gallery-strip {
    padding-bottom: 2px;
  }

  .tgsn-gallery-strip__item img {
    display: block;
  }

  /* 4. CTA BOOKING — padding vertical más ajustado */
  .tgsn-booking-cta-bar {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  /* 5. FOOTER — más compacto */
  .djclub-global-footer {
    margin-top: 2rem;
  }

  .djclub-global-footer__inner {
    gap: 1.125rem;
    padding-top: 1.375rem;
    padding-bottom: 1rem;
  }

  .djclub-global-footer__col h4 {
    margin-bottom: 0.625rem;
  }

  .djclub-global-footer__col ul {
    gap: 0.35rem;
  }

  .djclub-global-footer__bottom {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  /* 6. GAPS entre bloques — ritmo más fluido */
  .tgsn-artist-grid {
    gap: 0.625rem;
    padding-top: 0.875rem;
  }

  .tgsn-artist-lower {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .tgsn-booking-cta-bar {
    margin-top: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA BOOKING — tamaño intermedio centrado, desktop
═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .tgsn-booking-cta-bar {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════
   IDENTIDAD mobile — spacing editorial refinado
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* 1. Descripción — línea más corta, más legible */
  .tgsn-artist-about .tgsn-about-bio {
    max-width: 88%;
    line-height: 1.7;
  }

  /* 2. Ubicación — más separada de la descripción */
  .tgsn-about-meta {
    margin-top: 0.5rem;
  }

  /* 3. Tags — más respiración entre ellos */
  .tgsn-about-tags {
    gap: 0.35rem 0.4rem; /* vertical horizontal */
    margin-top: 0.375rem;
  }

  /* 4. RRSS — más cerca de los tags */
  .tgsn-about-socials-text {
    margin-top: 0.375rem;
  }

  /* 5. Línea separadora del header — más sutil */
  .tgsn-about-header {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.125rem;
  }
}

/* ═══════════════════════════════════════════════════════
   ALINEACIÓN VISUAL POR FILAS — desktop
   Cajas de la misma fila terminan a la misma altura.
   Sin inflar contenido — solo stretch + padding interior.
═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {

  /* Fila superior — cajas a la misma altura */
  .tgsn-artist-grid {
    align-items: stretch;
  }

  .tgsn-artist-grid .tgsn-preview-block {
    display: flex;
    flex-direction: column;
  }

  /* El contenido de tracks y eventos empuja hacia arriba;
     el espacio restante queda abajo — editorial, no relleno forzado */
  .tgsn-top-tracks-preview,
  .tgsn-events-preview {
    flex: 1;
  }

  /* Fila inferior — galería e identidad a la misma altura */
  .tgsn-artist-lower {
    align-items: stretch;
  }

  .tgsn-artist-gallery,
  .tgsn-artist-about {
    display: flex;
    flex-direction: column;
  }

  /* Galería: strip ocupa todo el alto disponible */
  .tgsn-gallery-strip {
    flex: 1;
  }

  .tgsn-gallery-strip__item {
    /* En desktop el aspect-ratio ya define la altura;
       al hacer flex:1 en el strip, las imágenes se expanden —
       forzar object-fit para que no se distorsionen */
    aspect-ratio: unset;
    flex: 1;
    min-height: 0;
  }

  .tgsn-gallery-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Activity strip — alinear márgenes con tgsn-artist-section (padding 3rem) */
  .tgsn-activity-strip {
    padding-inline: 3rem;
    max-width: 1440px;
    margin-inline: auto;
  }

  /* CTA — mismos márgenes que el contenido principal */
  .tgsn-booking-cta-bar {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA BOOKING mobile — layout compacto una línea
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .tgsn-booking-cta-bar {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  /* Icono + texto en una sola fila horizontal */
  .tgsn-booking-cta-content {
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
  }

  .tgsn-booking-cta-content .material-symbols-outlined {
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent, #DD0B02);
  }

  /* El div interior con strong+p se convierte en texto inline */
  .tgsn-booking-cta-content > div {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
    min-width: 0;
  }

  .tgsn-booking-cta-content strong {
    font-size: 0.72rem;
    white-space: nowrap;
    margin-bottom: 0;
  }

  /* Ocultar subtexto — ruido en mobile */
  .tgsn-booking-cta-content p {
    display: none;
  }

  /* Botón ocupa todo el ancho */
  .tgsn-booking-cta-btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.67rem;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA BOOKING desktop — banda horizontal editorial
═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .tgsn-booking-cta-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.875rem 1.75rem;
  }

  .tgsn-booking-cta-content {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
  }

  .tgsn-booking-cta-content .material-symbols-outlined {
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .tgsn-booking-cta-content > div {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    min-width: 0;
  }

  .tgsn-booking-cta-content strong {
    font-size: 0.78rem;
    white-space: nowrap;
    margin-bottom: 0;
  }

  /* Subtexto inline junto al strong */
  .tgsn-booking-cta-content p {
    display: inline;
    font-size: 0.68rem;
    color: rgba(229, 226, 207, 0.38);
    margin: 0;
    white-space: nowrap;
  }

  .tgsn-booking-cta-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.375rem;
    font-size: 0.68rem;
    width: auto;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA BOOKING desktop — alineado con el sistema visual
═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .tgsn-booking-cta-bar {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   FILA INFERIOR — mismo ancho que fila superior
═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .tgsn-artist-lower {
    padding-inline: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   ÚLTIMO REFINAMIENTO MOBILE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* 1. Galería — imagen menos dominante verticalmente */
  .tgsn-gallery-strip__item {
    flex: 0 0 65%;
    width: 65%;
    max-width: 65%;
    aspect-ratio: 4/5;
  }

  /* 2. CTA Booking — más compacto */
  .tgsn-booking-cta-bar {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .tgsn-booking-cta-btn {
    padding: 0.5rem 1rem;
  }

  /* 3. Footer — columna única, sin mini-desktop */
  .djclub-global-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.375rem 16px 1rem;
  }

  .djclub-global-footer__brand {
    grid-column: auto;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .djclub-global-footer__col {
    padding-block: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .djclub-global-footer__col:last-child {
    border-bottom: none;
  }

  .djclub-global-footer__col h4 {
    margin-bottom: 0.5rem;
  }

  .djclub-global-footer__col ul {
    gap: 0.3rem;
  }
}

/* ═══════════════════════════════════════════════════════
   SISTEMA MODULAR DINÁMICO — grids adaptativos
═══════════════════════════════════════════════════════ */

/* Solo tracks — ocupa ancho completo */
.tgsn-artist-grid--solo-tracks {
  grid-template-columns: 1fr;
}

/* Solo eventos — ocupa ancho completo */
.tgsn-artist-grid--solo-events {
  grid-template-columns: 1fr;
}

/* Sin galería — identidad ocupa el ancho completo */
.tgsn-artist-lower--no-gallery {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  /* En mobile ya son columna única — no hay diferencia */
  .tgsn-artist-grid--solo-tracks,
  .tgsn-artist-grid--solo-events,
  .tgsn-artist-lower--no-gallery {
    grid-template-columns: 1fr;
  }
}
