/* SEO & Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  --bg-primary: #000000;
  --bg-secondary: #161b22;
  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --border: #30363d;
  --accent: #58a6ff;
  --purple-accent: #c77dff;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: #000000;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.header .social-links-grid {
  gap: 0.5rem;
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  flex: 0 0 auto;
  margin-left: -0.5rem;
  max-width: 100%;
  overflow: hidden;
}

.header-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9d1d9;
  letter-spacing: -0.01em;
  user-select: none;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-brand:hover {
  color: #58a6ff;
}

.brand-highlight {
  color: #c77dff;
}

.header-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(199, 125, 255, 0.7);
  letter-spacing: -0.01em;
  user-select: none;
  margin-left: 0.5rem;
}

.header-left .header-logo-wrapper {
  width: 2.625rem !important;
  height: 2.625rem !important;
  max-width: 2.625rem !important;
  max-height: 2.625rem !important;
  min-width: 2.625rem !important;
  min-height: 2.625rem !important;
  flex-shrink: 0 !important;
  margin-left: 0.75rem;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  display: inline-block !important;
  box-sizing: border-box !important;
  contain: strict !important;
}

.header-left .header-logo-wrapper .header-logo {
  width: 2.625rem !important;
  height: 2.625rem !important;
  max-width: 2.625rem !important;
  max-height: 2.625rem !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  box-sizing: border-box !important;
  position: relative !important;
}

.header-left .header-logo-wrapper:hover .header-logo {
  opacity: 1;
}

.header-email {
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(199, 125, 255, 0.6);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.2s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.header-email:hover {
  color: #c77dff;
}

.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Main Content */
.main {
  flex: 1;
  width: 100%;
  padding: 2rem 0;
  overflow: auto;
}

.main-content-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: flex-start;
}

.content-area {
  flex: 1;
  min-width: 0;
  align-self: flex-start;
}

.section {
  width: 100%;
  margin-bottom: 3rem;
  padding-top: 0;
}

.section-header {
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding: 0 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #c9d1d9;
}

/* Main Section Tabs */
.main-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.main-tab-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #8b949e;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
  font-family: 'Inter', sans-serif;
}

.main-tab-button:hover {
  color: #c9d1d9;
}

.main-tab-button.active {
  border-bottom-color: #c77dff;
  color: #c77dff;
}

.content-section {
  width: 100%;
  min-height: 0;
}

.content-section.hidden {
  display: none;
}

/* Social Links */
.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(199, 125, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #c9d1d9;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.2), 0 0 4px rgba(199, 125, 255, 0.1);
}

.social-link-card:hover {
  border-color: rgba(199, 125, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.4), 0 0 8px rgba(199, 125, 255, 0.2);
  color: #c77dff;
  transform: translateY(-1px);
}

.social-link-card .platform {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* Sidebar */
.sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  margin-top: 0;
}

/* Music Player */
.music-player-container {
  width: 100%;
}

.music-player {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(199, 125, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.2), 0 0 8px rgba(199, 125, 255, 0.1);
}

.music-player-header {
  margin-bottom: 0.5rem;
  text-align: center;
}

.music-player-title {
  font-size: 1rem;
  font-weight: 600;
  color: #c9d1d9;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.25rem;
}

.music-current-track {
  font-size: 0.85rem;
  font-weight: 400;
  color: #c77dff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(199, 125, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.music-progress-bar {
  height: 100%;
  background: #c77dff;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.music-time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #8b949e;
  font-family: 'Inter', sans-serif;
}

.music-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.music-control-btn {
  background: transparent;
  border: 1px solid rgba(199, 125, 255, 0.2);
  color: #c9d1d9;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.2), 0 0 4px rgba(199, 125, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.music-control-btn:hover {
  border-color: rgba(199, 125, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.4), 0 0 8px rgba(199, 125, 255, 0.2);
  color: #c77dff;
}

.music-play-pause {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.music-volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.music-volume-slider {
  flex: 1;
  height: 4px;
  background: rgba(199, 125, 255, 0.1);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.music-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #c77dff;
  border-radius: 50%;
  cursor: pointer;
}

.music-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #c77dff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.music-track-list {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.track-item {
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
}

.track-item:hover {
  background: rgba(199, 125, 255, 0.05);
  border-color: rgba(199, 125, 255, 0.2);
}

.track-item.active {
  background: rgba(199, 125, 255, 0.1);
  border-color: rgba(199, 125, 255, 0.4);
  color: #c77dff;
}

.track-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: inherit;
  font-family: 'Inter', sans-serif;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-item.active .track-title {
  color: #c77dff;
}

.track-duration {
  font-size: 0.75rem;
  color: #8b949e;
  font-family: 'Inter', sans-serif;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.track-item.active .track-duration {
  color: rgba(199, 125, 255, 0.7);
}

@media (max-width: 968px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .main {
    min-height: calc(100vh - 80px);
    overflow-x: hidden;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }
  
  .main-content-wrapper {
    flex-direction: column;
    padding: 0 0.5rem;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    display: flex;
  }
  
  .sidebar {
    display: none !important;
  }
  
  .music-player-container {
    display: none !important;
  }
  
  .music-player {
    display: none !important;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .header .social-links-grid {
    justify-content: center !important;
    width: 100% !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 0.4rem !important;
  }
  
  .header .social-link-card {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
    flex: 0 1 auto !important;
    min-width: auto !important;
    display: inline-flex !important;
  }
  
  .header .social-link-card .platform {
    font-size: 0.8rem !important;
  }
  
  .bio-container, .shows-container, .photos-container {
    padding: 0 0.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    flex: 1;
    min-height: 0;
  }
  
  .bio-content {
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .bio-image-wrapper {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 2rem 0;
  }
  
  .bio-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  
  .content-area {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  
  .main-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
  }
  
  .main-tabs::-webkit-scrollbar {
    height: 4px;
  }
  
  .main-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .main-tabs::-webkit-scrollbar-thumb {
    background: rgba(199, 125, 255, 0.3);
    border-radius: 2px;
  }
  
  .main-tab-button {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .content-section {
    flex: 1;
    overflow-y: visible;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    padding-bottom: 2rem;
  }
  
  .bio-container, .shows-container, .photos-container, .merch-container {
    padding-bottom: 2rem;
  }
  
  .content-section.hidden {
    display: none;
  }
}

/* Shows */
.shows-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #8b949e;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
  font-family: 'Inter', sans-serif;
}

.tab-button:hover {
  color: #c9d1d9;
}

.tab-button.active {
  border-bottom-color: #c77dff;
  color: #c77dff;
}

.shows-content {
  width: 100%;
}

.shows-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.shows-list.hidden {
  display: none;
}

.show-card {
  padding: 1.5rem;
  background: transparent;
  border: 1px solid rgba(199, 125, 255, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.2), 0 0 8px rgba(199, 125, 255, 0.1);
}

.show-card:hover {
  border-color: rgba(199, 125, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.4), 0 0 16px rgba(199, 125, 255, 0.3);
}

.show-date {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c77dff;
  margin-bottom: 0.5rem;
}

.show-venue {
  font-size: 1.1rem;
  font-weight: 500;
  color: #c9d1d9;
  margin-bottom: 0.25rem;
}

.show-location {
  font-size: 0.95rem;
  color: #8b949e;
  margin-bottom: 0.25rem;
}

.show-time {
  font-size: 0.9rem;
  color: #8b949e;
  margin-bottom: 0.5rem;
}

.ticket-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 8px;
  color: #c77dff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.ticket-link:hover {
  background: rgba(199, 125, 255, 0.1);
  border-color: rgba(199, 125, 255, 0.5);
}

.no-shows {
  padding: 3rem;
  text-align: center;
  color: #8b949e;
  font-family: 'Inter', sans-serif;
}

.no-content {
  padding: 3rem;
  text-align: center;
  color: #8b949e;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.photos-container,
.bio-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 0;
}

.bio-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  line-height: 1.9;
  color: #c9d1d9;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.bio-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: left;
}

.bio-content p:first-child {
  margin-top: 0;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.bio-image-wrapper {
  text-align: center;
  margin: 2rem auto;
  max-width: 100%;
}

.bio-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(199, 125, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.2), 0 0 8px rgba(199, 125, 255, 0.1);
  display: block;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 0.75rem;
  text-align: center;
  border-top: 1px solid #30363d;
  background: #000000;
  flex-shrink: 0;
}

.footer a {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: #58a6ff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #484f58;
}

