.audio-player {
    width: 200px;
    background: linear-gradient(180deg, #dcdcdc, #b0b0b0);
    border: 3px outset #666;
    padding: 10px;
    text-align: center;
    box-shadow: 4px 4px 0px #222;
    border-radius: 8px;
    position: absolute;
    bottom: 65px;
    left: 5px;
  }

      .player-header {
    background: navy;
    color: white;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 8px;
    border: 2px inset #333;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
  }

  .player-header span {
    display: inline-block;
    padding-left: 100%; /* start off-screen */
    animation: scroll-text 12s linear infinite;
  }

  @keyframes scroll-text {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }

  .controls button {
    background: silver;
    border: 2px outset #666;
    padding: 3px 8px;
    margin: 2px;
    font-size: 12px;
    cursor: pointer;
  }

  .controls button:active {
    border: 2px inset #333;
  }

  #seek {
    width: 80%;
    margin: 5px auto;
    display: block;
  }

  .coral-pixels-regular {
    font-family: "Coral Pixels", serif;
    font-weight: 400;
    font-style: normal;
  }


  .container {
    display: grid;
    grid-template-areas:
      "header header header"
      "left main right"
      "footer footer footer";
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    gap: 2px; /* spacing between grid cells */
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
  }

  header { 
    font-family: "Coral Pixels";
    grid-area: header; 
    background-image: url("https://64.media.tumblr.com/11572328aece2e09870b05a302bb85a6/42cb08fb0519d2ed-4d/s400x600/73063d17e5aecf088827b1c7a80a9627b213347a.gif");
    opacity: 86%; 
    border-radius: 10px;
    text-align: center; 
    width: 100%;
    max-width: 1100px;
    max-height: 400px;
    padding: 1rem;
    margin: auto;
    font-size: large;
  }

  .left { 
    grid-area: left; 
    background-image: url("https://64.media.tumblr.com/11572328aece2e09870b05a302bb85a6/42cb08fb0519d2ed-4d/s400x600/73063d17e5aecf088827b1c7a80a9627b213347a.gif"); 
    position: relative;
    width: 100%;
    max-width: 250px;
    min-height: 400px;
    overflow: hidden;
    font-family: "Coral Pixels";
  }

  .movable {
      position: absolute;
      z-index: 10;
  }

  .mobile-only {
    display: none;
  }

  .mobile-movable {
    position: absolute;
    z-index: 10;
    display: none;
  } 

  .draggable {
    cursor: grab;
  }

  .draggable:active {
    cursor: grabbing;
  }

  main { 
    grid-area: main; 
    background: white; 
    border: 5px solid black;
    border-style: inset;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: auto;
    min-width: 600px;
    min-height: 700px;
    padding: 3rem;
    margin: auto;
    text-align: left;
    font-family: "Coral Pixels";
  }



  .right { 
    grid-area: right; 
    background-image: url("https://64.media.tumblr.com/11572328aece2e09870b05a302bb85a6/42cb08fb0519d2ed-4d/s400x600/73063d17e5aecf088827b1c7a80a9627b213347a.gif");
    position: relative;
    width: 100%;
    max-width: 250px;
    min-height: 400px;
    overflow: hidden;
  }

  footer { 
    grid-area: footer; 
    background-image: url("https://64.media.tumblr.com/11572328aece2e09870b05a302bb85a6/42cb08fb0519d2ed-4d/s400x600/73063d17e5aecf088827b1c7a80a9627b213347a.gif"); 
    text-align: center;
    font-family: "Coral Pixels";
  }


  h1 {
    position: absolute;
    text-align: center;
  }

  p1 {
    grid-area: left;
    position: absolute;
    left: 93px;
    top: 126px;
    font-size: 103%;
  }

  p2 {
    grid-area: main;
    position: absolute;
    left: 480px;
    top: 460px;
    text-decoration: underline;
  }
  

  boxworld {
    grid-area: main;
    position: absolute;
    top: 230px;
    left: 760px;
    border-image: url("https://media.tenor.com/UZswyok8T-oAAAAM/pride-rainbow.gif") 30 / 3px;
    padding: 9px;
    font-size: 20px;
  }

  boxworld2 {
    grid-area: main;
    position: absolute;
    border: 1px solid white;
    left: 740px;
    top: 300px;
    font-size: 16px;
    text-align: center;
  }

  talkbox {
    grid-area: main;
    position: absolute;
    background-color: white;
    border-image: url("https://media.tenor.com/UZswyok8T-oAAAAM/pride-rainbow.gif") 30 / 3px;
    left: 420px;
    top: 487px;
    width: 16%;
    text-align: center;
    padding: 5px;
  }

  .wolverinewalk {
    background-image: url(https://blob.gifcities.org/gifcities/SRLFTQ7DYZP4LFY56GFFJA756354ORBU.gif);
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 80;
    right: -100px;
    animation: wolverineWalk 30s linear infinite;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  @keyframes wolverineWalk {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-150vw); /* walks halfway across screen */
    }
  }
  

  #drawArea {
    border: 3px ridge #9999;
    background: #fff;
    cursor: crosshair;
    image-rendering: pixelated;
    width: 20%;
    height: auto;
  }

  #betaDisclaimer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Coral Pixels";
  }
  
  .disclaimer-content {
    background: #fff;
    color: #000;
    border: 4px ridge #666;
    padding: 20px 30px;
    max-width: 400px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 10px #333;
  }
  
  #dismissDisclaimer {
    margin-top: 15px;
    background: silver;
    border: 3px outset #888;
    padding: 5px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
  }
  
  #dismissDisclaimer:active {
    border: 3px inset #888;
  }

  body {
    cursor: url("https://64.media.tumblr.com/c430f55f5a424feed3b7825a17e927b9/43acba4c2204d746-74/s75x75_c1/b4f5c15e51b55e1c710f891ce3a367c74f43722d.gif") 4 4, auto;
  }
  
  