  * {
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: 'Hawaii';
    src: url('../fonts/Hiragino Maru Gothic ProN W4.otf');
  }
  
  body {
    background-image: url('../Images/hawaii wide.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #030507;
    font-family: 'Hawaii';
    color: white;
    font-size: 18px;
  }
  
  @media (min-aspect-ratio: 2196/1080) {
  body {
      background-size: contain;
    }
  
  }
  
  article {
    background-color: rgba(20, 20, 20, 0.7);
    border: 2px inset #555;
    padding: 15px 20px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  
  article h2 {
    font-size: 32px;
  }
  
  article h2 a {
    color: #87f44d;  
  }
  
  article h2 a:hover {
    color: #f18635;
    text-decoration: underline;
  }
  
  .post-meta {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .content-box {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 0 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #555;
  }
  
  .content-box#title {
     text-align: center;
  }
  
  .cool-title{
    font-size: 60px;
    display: inline-block;
    background-image: linear-gradient(to right, #ea393e, #f18635, #faf957, #87f44d, #2973dd, #ad3693);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .post-column {
    flex: 3;
    min-width: 0;
  }  
  
  .sidebar-column {
    position: absolute;
    top: 100%;
    left: 100%;
    margin-left: 20px;
    width: 250px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 2px inset #555;
    padding: 15px;
  }
  
  .sidebar-column h3 {
    font-size: 24px;
    margin-top: 15px;
    color: #87f44d;
    
    border-bottom: 2px dashed #555;
    padding-bottom: 5px;
    margin-bottom: 10px; 
  }
  
  .sidebar-column ul {
    list-style-type: square;
    padding-left: 20px;
    margin: 0 0 20px 0;
  }
  
  .sidebar-column ul a {
    color: #f18635;
    text-decoration: none;
    font-size: 20px;
  }
  
  .sidebar-column ul a:hover {
    text-decoration: underline;  
  }
  
  .wrapper-thing {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .wrapper-thing .content-box {
    margin: 0;
    width: 100%;
  }
  
  .moon-player {
    position: fixed;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
  }
  
  #main-player {
    display: none;
  }
  
  .player-marquee {
    width: 100%;
    color: white;
    position: absolute;
    left: 3px;
    text-align: center;
  }
  
  .player-time {
    margin: 5px 0;
    font-weight: bold;
    display: block;     
    text-align: center;   
    width: 100%;  
  }  
  
  .sidebar-player-controls {
    display: flex;    
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 20px;     
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px inset #555;
    padding: 8px;
  }
  
  .sidebar-player-controls button {
    font-family: 'Hawaii', sans-serif;
    color: white;
    background-color: transparent;
    border: 1px solid #777;
    padding: 5px 0;
    cursor: pointer;
    flex-grow: 1;
    font-size: 14px;
  }

  .sidebar-player-controls button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .volume-control {
    width: 100%;
    margin-top: 10px;
  }

  #volume-slider {
    width: 100%;
    height: 8px;
    cursor: pointer;
    -webkit-appearance: none; 
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2); 
  }
  
  #volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #FFF; 
    margin-top: -4px; 
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.4);
  }

  #volume-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #FFF;
    border: none;
  }
  
  #volume-slider::-webkit-slider-runnable-track {
    background: #1a1e21; 
    border-radius: 4px;
    height: 8px;
  }

  #volume-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    height: 8px;
  }

    #btn-play-pause {
      color: #87f44d;
      font-weight: bold;
      border-left: 1px solid #555;
      border-right: 1px solid #555;
    }

    #btn-prev, #btn-next {
      color: #f18635;
    }
  
    #setlist-toggle {
      display: none;  
    }
  
  .player-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 5px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .player-toggle label {
    opacity: 0.6;
    padding: 0 5px;
    color: black;
    font-weight: bold;
  }
  
  #setlist-toggle:not(:checked) + label:first-of-type {
    opacity: 1.0;
    font-weight: bold;
    
    background-image: linear-gradient(to right, #ea393e, #f18635, #faf957, #87f44d, #2973dd, #ad3693);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  #setlist-toggle:checked ~ label:last-of-type {
    opacity: 1.0;
    font-weight: bold;
    
    background-image: linear-gradient(to right, #ea393e, #f18635, #faf957, #87f44d, #2973dd, #ad3693);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .music-prompt {
    position: fixed;
    left: 50%; 
    top: 50%;  
    width: 500px;
    padding: 15px;
    
    background-color: rgba(20, 20, 20, 0.9);
    border: 2px inset #555;

    z-index: 200; 
    
    transform: translate(-90vw, -50%);
    transition: transform 2s ease-in-out;
  } 
  
  .music-prompt.show {
    transform: translate(-50%, -50%);
  }

  .music-prompt p {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .prompt-buttons {
    display: flex;
    justify-content: space-between;
  }

  .prompt-buttons button {
    font-family: 'Hawaii', sans-serif;
    color: white;
    background-color: #333;
    border: 2px outset #666;
    padding: 5px 10px;
  }

  .prompt-buttons button:hover {
    background-color: #555;
    cursor: pointer;
  }
  
  .rainbow-text {
    background-image: linear-gradient(to right, #ea393e, #f18635, #faf957, #87f44d, #2973dd, #ad3693);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  