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

    body {
      background: #ffffff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #2c2c2c;
      line-height: 1.6;
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
    }

    .upcoming-shows-banner {
      background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
      border-radius: 20px;
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 20px rgba(44, 95, 141, 0.3);
      border: 2px solid #6b8cae;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 4px 20px rgba(44, 95, 141, 0.3);
      }
      50% {
        box-shadow: 0 4px 25px rgba(44, 95, 141, 0.5);
      }
    }

    .upcoming-shows-banner h2 {
      color: white;
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .show-dates {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .show-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: white;
    }

    .show-date strong {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #ffffff;
    }

    .show-date span {
      font-size: 1.1rem;
      color: #b8d4eb;
    }

    header {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 3rem;
      margin-bottom: 3rem;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e4e8;
    }

    .header-content {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3rem;
      align-items: start;
    }

    .headshot {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      border: 3px solid #6b8cae;
      transition: transform 0.3s ease;
    }

    .headshot:hover {
      transform: scale(1.02);
    }

    .title-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    .title-section h2 {
      font-size: 1.5rem;
      color: #5a7a99;
      font-weight: 400;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .title-section p {
      color: #4a4a4a;
      line-height: 1.8;
      font-size: 1rem;
    }

    section {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e4e8;
    }

    h3 {
      font-size: 1.8rem;
      color: #2c5f8d;
      margin-bottom: 1.5rem;
      font-weight: 600;
      position: relative;
      padding-bottom: 0.5rem;
    }

    h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #6b8cae, transparent);
    }

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

    .gallery-item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .media-caption {
      background: linear-gradient(135deg, #6b8cae 0%, #4a6b8a 100%);
      color: white;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      text-align: center;
      font-weight: 500;
      box-shadow: 0 2px 10px rgba(107, 140, 174, 0.25);
    }

    iframe {
      width: 100%;
      aspect-ratio: 9/16;
      border-radius: 12px;
      border: 2px solid #d0d7de;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    audio {
      width: 100%;
      border-radius: 10px;
    }

    ul {
      list-style: none;
    }

    ul li {
      padding: 0.75rem 0;
      border-bottom: 1px solid #e0e4e8;
      transition: padding-left 0.3s ease;
    }

    ul li:hover {
      padding-left: 1rem;
      background: rgba(107, 140, 174, 0.05);
    }

    ul li:last-child {
      border-bottom: none;
    }

    a {
      color: #2c5f8d;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 500;
    }

    a:hover {
      color: #1a3a52;
      text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 2rem;
      background: #f8f9fa;
      border-radius: 20px;
      margin-top: 2rem;
      border: 1px solid #e0e4e8;
    }

    footer p {
      color: #6a6a6a;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .headshot {
        max-width: 280px;
        margin: 0 auto;
      }

      .title-section h1 {
        font-size: 2rem;
      }

      .title-section h2 {
        font-size: 1.25rem;
      }

      header {
        padding: 2rem;
      }

      section {
        padding: 1.5rem;
      }

      .gallery {
        grid-template-columns: 1fr;
      }

      .upcoming-shows-banner {
        padding: 1.5rem;
      }

      .upcoming-shows-banner h2 {
        font-size: 1.5rem;
      }

      .show-dates {
        gap: 1.5rem;
      }

      .show-date strong {
        font-size: 1.1rem;
      }

      .show-date span {
        font-size: 1rem;
      }
    }
