/* Reset margin/padding */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(255, 123, 0);
    color: yellow;
  }
  
  /* GENERAL */

  /* Fixed Sidebar */
  .sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-image: repeating-linear-gradient(
      to right,
      red,
      red 20px,
      white 20px,
      white 40px
    );
    color: white;
  }

  .sidebar-image {
    width: 150px;
    height: 125px;
    margin-bottom: 20px;
    transition: transform 0.1s linear;
    will-change: transform;

  }
  
  .sidebar-image img {
    width: 100%;
    height: 100%;
    display: block;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.3s;
  }
  
 /* .sidebar-image:hover img {
    animation: flipBackForth 2s linear infinite;
  }

  @keyframes flipBackForth {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  */

  .sidebar h2 {
    padding: 2px;
    font-size: 22px;
    color: yellow;
    background-color: red;
    margin: 10px 0 10px 0; /* spacing above and below */
  }
  
  .sidebar a {
    display: block;
    margin: 10px 0;
    color: red;
    text-decoration: none;
    font-weight: bold;
  }

  .sidebar b {
    display: block;
    margin: 10px 0;
    color: yellow;
    text-decoration: none;
    font-weight: bold;
  }

  .sidebar-button {
    align-self: center;
    width: 100%;
    color: red;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    margin: 5px 0;
    border: 3px solid red;
    border-radius: 6px;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 51%,
    rgba(255, 0, 0, 0.2) 100%
  ), yellow;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 2px 2px 5px rgba(0,0,0,0.2);
  }
  
  .sidebar-button:hover {
    background-color: rgb(255, 123, 0);
    color: yellow;
    border: 3px solid yellow;
  }

  .active-button {
    align-self: center;
    width: 100%;
    color: yellow;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    margin: 5px 0;
    border: 3px solid yellow;
    border-radius: 6px;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 51%,
    rgba(255, 0, 0, 0.2) 100%
  ), rgb(255, 123, 0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 2px 2px 5px rgba(0,0,0,0.2);
  }
  
  /* Content Area */

  .content {
    margin-left: 200px;
    padding: 20px;
  }

  /* Carousel */

  .carousel-wrapper {
    position: relative;
    width: fit-content;
  }

  .carousel-container {
    display: inline-block;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  .carousel-slides {
    width: 411px;
    display: flex;
    transition: transform 0.4s ease-in-out;
    
  }
  
  .carousel-slide {
    flex-basis: 411px;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .carousel-slide .text-block p {
    color: yellow;
    margin: 0;
    font-weight: bold;
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
  }
  
  .carousel-button.prev {
    left: -40px;
  }
  
  .carousel-button.next {
    right: -40px;
  }
  
  .carousel-button:hover {
    background-color: red;
    color: white;
    border: 3px inset white;
    box-shadow: none;
  }

  .carousel-slide img:hover {
    outline: 4px solid red;
    outline-offset: -4px; /* makes it appear inside */
    border-radius: 10px;
    animation: outlinePulse 2s infinite;
  }

  .text-block p {
    margin: 0;
  }

  .highlight-text {
    background-color: rgb(255, 145, 0);
    padding: 10px;
    border-radius: 0; /* Square corners */
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
  }

  .news-highlight-text {
    background-color: rgb(255, 145, 0);
    padding: 10px;
    border-radius: 0; /* Square corners */
    width: 700px;
    align-items: center;
    gap: 10px; /* Space between image and text */
  }
  
  .highlight-image {
    max-width: 200px;
    height: auto;
  }

  .message {
    background: #f0f0f0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
  }

  /* Catalog / Release Pages */

  .artist {
    font-weight: bold;
  }

  .title {
    font-style: italic;
  }

  .release {
    /* background-color:rgb(255, 145, 0); */
    padding: 10px;
    width: 200px;
    text-align: center;
  }

  .release p {
    line-height: 0.4; /* Tighter line spacing (default is ~1.5) */
  }

  .release img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .release img:hover {
    outline: 4px solid red;
    outline-offset: -4px; /* makes it appear inside */
    border-radius: 10px;
    animation: outlinePulse 2s infinite;
  }

  .release-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .release-link {
    text-decoration: none; /* Remove underline from link */
    color: inherit;         /* Keep original text color */
    display: inline-block;
  }

  
  .release-page p {
    margin-left: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .release-page-pics img {
    margin-top: 20px;
  }


  .release-content {
    margin-left: 200px;
    padding: 20px;
    display: flex;
  }

  .release-embed {
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 400px;
  }

  .embed-with-text {
    display: flex;
    margin-left: 220px;
    margin-top: 20px;
    gap: 20px; /* space between embeds and text */
    align-items: flex-start;
  }

  .embed-text {
    flex: 1;
    display: block;
    padding: 10px;
    background-color: rgb(255, 145, 0);
  }

  .embed-text p {
    color: yellow;
    font-style: italic;
  }

  .embed-text p:first-child {
    margin-top: 0;
  }

  .animated-border {
    display: inline-block;
    border: 4px solid red;
    animation: borderPulse 2s infinite;
    border-radius: 10px;
  }

  video.animated-border {
    object-fit: fill;     
    aspect-ratio: auto;   
  }

  @keyframes outlinePulse {
    0%   { outline-color: red; }
    50%  { outline-color: yellow; }
    100% { outline-color: red; }
  }
  
  @keyframes borderPulse {
    0%   { border-color: red; }
    50%  { border-color: yellow; }
    100% { border-color: red; }
  }
  
  .embed-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  .icons {
    display: flex;
    flex-direction: row; /* default, but good to be explicit */
    gap: 10px; /* space between icons */
  }

  .icons img{
    width: 50px;
    height: 50px;
  }

  .buy-button {
    width: 375px;
    align-self: center;
    color: red;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border: 3px solid red;
    border-radius: 6px;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 51%,
    rgba(255, 0, 0, 0.2) 100%
  ), yellow;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 2px 2px 5px rgba(0,0,0,0.2);
  }

  .buy-button:hover {
    background-color: rgb(255, 123, 0);
    color: yellow;
    border: 3px solid yellow;
  }