    /* Reset and base */
    body {
      margin: 0;
      background: #121212;
      color: #eee;
      font-family: Arial, sans-serif;
      text-align: justify;
      line-height: 120%;
    }
    
    @font-face {
  font-family: "Oswald";
  font-style: regular;
  font-weight: lighter;
  src: url(/Oswald-Light.ttf) format("truetype");
}

    a {
      color: #1277e9;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Layout container */
    .page-layout {
      display: flex;
      align-items: flex-start;
      max-width: 1300px;
      margin: 0 auto;
      padding: 1em;
      gap: 2em;
    }

    /* Main content */
    .main-box {
      background: #1e1e1e;
      border-radius: 12px;
      padding: 2em 1em;
      flex: 1 1 0;
      box-sizing: border-box;
    }

    /* Sidebar (true sticky) */
    .right-sidebar {
      width: 300px;
      position: sticky;
      top: 2rem;
      align-self: flex-start;
      box-sizing: border-box;
    }

    .right-box {
      background: #222;
      padding: 1em;
      border-radius: 10px;
      color: #eee;
    }

    .right-box h4 {
      text-align: center;
      margin-top: 0;
      margin-bottom: 0.5em;
      color: #ff424d;
    }

    /* Inner content layout */
    .main-content {
      display: flex;
      gap: 1.5rem;
    }

    .left-col {
      width: 25%;
      box-sizing: border-box;
      text-align: center;
    }

    .middle-col {
      width: 75%;
      box-sizing: border-box;
      padding-right: 2em;
    }

    /* Images */
    .left-col img:first-child {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .referred-artists img {
      border-radius: 4px;
      margin: 0 0.2em;
      vertical-align: middle;
      max-width: 25%;
      max-height: 100%;
    }

    .referred-artists p {
      margin: 0.2em 0;
    }

    .referred-artists p a {
      font-style: italic;
}

    .referred-artists-title {
      margin-top: 1.5em;
      font-weight: bold;
      text-decoration: overline;
      font-size: 0.9em;
      color: #1277e9;
    }
        
    @media only screen and (max-width: 1026px) {
    #fadeshow1 {
        display: none;
    }
}

/* Lightbox */

.lightbox {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  z-index: 1000;
}

.lightbox:target {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
}

.lightbox img:first-child {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    
.lightbox img {
  border-radius: 1em;
  display: block;
  margin: auto;
  max-height: 80vh;
  max-width: 90vh;
}

.lightbox .close {
  color: #fff;
  font-size: 4em;
  font-weight: bold;
  height: 1em;
  position: fixed;
  right: 0;
  top: 1em;
  width: 1em;
  z-index: 1001;
}

.lightbox p {
  font-family: "Calistoga", serif;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

    h1 {
      color: #1277e9;
      margin-top: 0;
      margin-bottom: 0.6em;
      font-family: "Oswald";
    }

    h4 {
      color: #1277e9 !important;
      margin-top: 0;
      margin-bottom: 1em;
      font-family: "Oswald";
    }

    .middle-col p {
      margin-top: 0;
      margin-bottom: 1em;
    }

    .middle-col p em strong {
      font-style: normal;
      font-weight: bold;
    }

    .button-link {
      display: inline-block;
      border: 2px solid #270979;
      background-image: linear-gradient(to top, #270979, #380dad);
      color: #fff;
      padding: 0.5em 1em;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9em;
      text-decoration: none;
      margin: 0.5em 0;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .relations-links {
      text-align: center;
    }

    .relations-links a {
      display: inline-block;
      margin-right: 0.3em;
      width: auto;
      padding: 0.5em 1em;
    }

    blockquote {
      border-left: 4px solid #1277e9;
      padding-left: 1em;
      color: #1277e9;
      font-style: italic;
      margin: 1em 0;
      line-height: 1.6;
      text-align: left !important;
    }

    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      max-width: 100%;
      border-radius: 8px;
      margin-top: 1em;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      text-align: center;
    }

    .back-link {
      text-align: center;
      margin-bottom: 1em;
    }

    .footer-note {
      max-width: 1300px;
      margin: 2em auto 3em auto;
      color: #999;
      font-size: 0.9em;
      text-align: center;
      padding: 0 1em;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .page-layout {
        flex-direction: column;
      }

      .main-content {
        flex-direction: column;
      }

      .left-col,
      .middle-col,
      .right-sidebar {
        width: 100%;
      }

      .right-sidebar {
        position: static;
        margin-top: 2em;
      }

      .button-link {
        width: auto;
      }

      .relations-links a {
        margin-right: 0;
        margin-bottom: 0.5em;
      }
    }