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

:root {
  --bg-color: #000;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --bg-input: #1a1a1a;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --border-color: #2a2a2a;
  --accent: #df00d9;
  --accent-hover: #ff33f9;
  --success: #22c55e;
  --error: #ef4444;
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-color);
  padding: 0;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1001;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

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

/* Hero Image */
.hero-image {
  width: 100%;
  background: var(--bg-color);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Video */
.hero-video {
  background: var(--bg-color);
  padding: 0 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-video .video-container {
  border-radius: 8px;
  overflow: hidden;
}

/* Video Hero */
.hero {
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container-small {
  padding-bottom: 56.25%;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Lazy YouTube */
.youtube-lazy {
  cursor: pointer;
  position: relative;
}

.youtube-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.youtube-lazy .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.8);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.youtube-lazy:hover .play-btn {
  background: rgba(0,0,0,0.95);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Sections */
.section {
  background: var(--bg-color);
  position: relative;
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 900px;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-primary);
}

/* Private Section */
.private-section {
  padding-top: 2rem;
}

/* Intro */
.intro {
  text-align: left;
  margin-bottom: 2rem;
}

.intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.intro-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--accent);
}

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

.btn-full {
  width: 100%;
}

.btn-small {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid var(--text-secondary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: inherit;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-small:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
}

/* Shows Map */
.shows-map-section {
  padding-top: 2rem;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-header h2 {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.map-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.map-toggle input {
  cursor: pointer;
  accent-color: var(--accent);
}

#shows-map {
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  z-index: 1;
}

#show-count {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1rem;
}

.custom-marker .marker-pin {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -18px 0 0 -12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.upcoming-marker .marker-pin {
  background: var(--success);
  border: 2px solid #16a34a;
}

.past-marker .marker-pin {
  background: #6b7280;
  border: 2px solid #4b5563;
}

.map-popup {
  min-width: 180px;
  line-height: 1.4;
}

.popup-show-name {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.popup-artist {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.popup-date {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}

.popup-venue {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.popup-ticket-link {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.leaflet-container a.popup-ticket-link {
  color: #fff;
}

.popup-ticket-link:hover {
  background: #333;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.leaflet-popup-content {
  margin: 12px 14px;
}

/* Filters */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 120px;
}

.filter-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.filter-group select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg-input);
  color: var(--text-primary);
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Shows List */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Show Card - Desktop */
.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: start;
  transition: border-color 0.2s;
}

.show-card:hover {
  border-color: #3a3a3a;
}

.show-date-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.show-date {
  text-align: center;
  background: var(--text-primary);
  color: var(--bg-color);
  border-radius: 6px;
  padding: 0.5rem;
}

.show-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.show-date .day {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.show-date .year {
  font-size: 0.7rem;
  opacity: 0.7;
}

.show-details {
  min-width: 0;
}

.show-header {
  margin-bottom: 0.25rem;
}

.show-artist {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.show-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  word-wrap: break-word;
}

.show-name-desktop {
  display: block;
}

.show-name-mobile {
  display: none;
}

.show-name a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.show-location {
  color: var(--text-muted);
}

.show-time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.show-bill-position {
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.show-actions {
  flex-shrink: 0;
  align-self: center;
}

.show-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Calendar & Share Dropdowns */
.calendar-dropdown,
.share-dropdown {
  position: relative;
  display: inline-block;
}

.calendar-options,
.share-options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 10;
  min-width: 140px;
}

.calendar-options a,
.calendar-options button,
.share-options a,
.share-options button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.calendar-options a:hover,
.calendar-options button:hover,
.share-options a:hover,
.share-options button:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.calendar-options a:first-child,
.share-options a:first-child,
.share-options button:first-child {
  border-radius: 6px 6px 0 0;
}

.calendar-options a:last-child,
.share-options a:last-child,
.share-options button:last-child {
  border-radius: 0 0 6px 6px;
}

.ticket-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.ticket-btn:hover {
  background: var(--accent-hover);
}

.no-shows {
  color: var(--text-muted);
  font-style: italic;
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.past-shows .show-card {
  opacity: 0.7;
}

.past-shows .show-card:hover {
  opacity: 0.85;
}

.past-shows .show-date {
  background: var(--text-muted);
}

.past-shows .show-bill-position {
  background: var(--text-muted);
}

/* Expandable Show Details */
.show-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid var(--text-secondary);
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.show-expand-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.show-expand-btn .expand-icon {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.show-expand-btn[aria-expanded="true"] .expand-icon {
  transform: rotate(180deg);
}

.show-expanded {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
}

.show-expanded h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.show-notes {
  margin-bottom: 1.25rem;
}

.show-notes p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.show-notes a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* Setlist */
.show-setlist {
  margin-bottom: 1.25rem;
}

.set-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.set-label:first-of-type {
  margin-top: 0;
}

.setlist-list {
  margin: 0 0 0 1.5rem;
  padding: 0;
}

.setlist-item {
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.song-name {
  font-weight: 500;
  color: var(--text-primary);
}

.song-cover {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 0.35rem;
}

.song-notes {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.song-notes::before {
  content: "[";
}

.song-notes::after {
  content: "]";
}

.show-gallery {
  margin-bottom: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

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

.show-videos {
  margin-bottom: 0.5rem;
}

.videos-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.video-item {
  min-width: 0;
}

.video-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-section {
  padding-top: 2rem;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: #3a3a3a;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.25rem;
}

.testimonial-quote::after {
  content: '"';
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 8px;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-company {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-company a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-logo {
    width: 80px;
    height: 80px;
  }
}

/* Email Signup */
.email-signup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.email-signup h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
}

.email-signup p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.email-form {
  display: flex;
  gap: 0.5rem;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-input);
  color: var(--text-primary);
}

.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.email-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-content h2 {
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

/* Form */
.hidden {
  display: none;
}

.form-message {
  text-align: center;
  padding: 2rem 1rem;
}

.form-message p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.form-success p:first-child {
  color: var(--success);
  font-size: 1.25rem;
}

.form-error p:first-child {
  color: var(--error);
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
}

.required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-input);
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

/* Blog */
.blog-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: none;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: #3a3a3a;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.blog-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--text-primary);
  text-decoration: none;
}

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

.blog-date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--accent-hover);
}

.no-posts {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* Blog Post (single) */
.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-header h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-content h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
}

.blog-post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-content a:hover {
  color: var(--accent-hover);
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 1.25rem 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.blog-post-content code {
  background: var(--bg-card);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-post-content pre {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-post-content pre code {
  background: none;
  padding: 0;
}

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .blog-section h1 {
    font-size: 1.5rem;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1.15rem;
  }

  .blog-post-header h1 {
    font-size: 1.5rem;
  }

  .blog-post-content {
    font-size: 1rem;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, background 0.2s;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-hover);
}

/* ========================================
   RESPONSIVE - TABLET (768px and below)
   ======================================== */
@media (max-width: 768px) {
  .section {
    padding: 1.5rem 1rem;
  }

  .section h2 {
    font-size: 1.35rem;
  }

  #shows-map {
    height: 300px;
  }

  .show-card {
    grid-template-columns: 70px 1fr;
    padding: 1rem;
    gap: 0.75rem;
  }

  .show-actions {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  .ticket-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .show-date .day {
    font-size: 1.5rem;
  }

  .show-name {
    font-size: 1rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
  .section {
    padding: 1.25rem 0.75rem;
  }

  .section h2 {
    font-size: 1.2rem;
  }

  #shows-map {
    height: 250px;
  }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .filters-bar {
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .filter-group {
    width: 100%;
  }

  /* Mobile Show Card - Clean Layout */
  .show-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .show-date-col {
    display: none;
  }

  .show-details {
    width: 100%;
  }

  .show-name {
    font-size: 1rem;
    line-height: 1.4;
  }

  .show-name-desktop {
    display: none;
  }

  .show-name-mobile {
    display: block;
  }

  .show-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .show-actions {
    width: 100%;
    margin-top: 0.5rem;
  }

  .show-actions-row {
    display: none;
  }

  .ticket-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .show-expand-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .email-form {
    flex-direction: column;
  }

  .intro-buttons {
    flex-direction: column;
  }

  .intro-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .modal-content {
    padding: 1.25rem;
    margin: 0.5rem;
  }

  .youtube-lazy .play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
