html {
     cursor: url(https://cur.cursors-4u.net/food/foo-/foo507.ani), url(https://cur.cursors-4u.net/food/foo-6/foo507.png), auto !important;
     overflow:hidden;
}

body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-image: linear-gradient(to bottom, #ff999900 20%, #ffffcc98 80%, #99ccffad 100%), url(images/w03bgstar.gif);
  margin: 0;
}


.wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 10px 10px 1fr 10px auto;
  grid-template-areas:
    "header header"
    "divider divider"
    ". ."
    "nav main"
    ". ."
    "music music"
    "footer footer";
  column-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
}

header {
  grid-area: header;
            background: url(images/grid-02.png), linear-gradient(to bottom,#ff9e97, #ff6f64);
  text-align: center;
  padding: 10px;
  border-radius: 20px 20px 0 0;
      box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
 border: 5px #ad3a3a dashed;
 border-bottom:none;
}

.divider {
  grid-area: divider;
  background: #ffe15b;
  height: 10px;
}

nav, main, header, footer, .divider {
  filter: drop-shadow(3px 1px 0px #0e0e0e9c);
}
nav {
  border: 10px ridge #a85f42;
  border-radius:10px;
  grid-area: nav;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2600 80%, #882c155d 100%), url(retina_wood.png);
  display: flex;
  flex-direction: column; /* stack buttons vertically */
}

nav img {
  display: block;
  margin: 0 auto 8px;
  transition: transform 0.2s ease;
}

nav .petimg:hover {
  transform: none;
  box-shadow: none;
}

nav img:hover {
  transform: translateY(-4px);
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* horizontally center images */
}
nav li {
  margin: 5px 0;
}

nav a img {
  display: block;          /* ensures no inline spacing issues */
}


main {
  border-radius:10px;
  border: 10px ridge #a85f42;
  grid-area: main;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2600 80%, #882c155d 100%), url(retina_wood.png);
  padding: 10px;
}

img{
  z-index:2;
filter: drop-shadow(3px 1px 0px #0e0e0e9c);
pointer-events:none;
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 2px solid #999;
}

footer {
 border: 5px #453aad dashed;
 border-top:none;
  position:relative;
  grid-area: footer;

  background: #5aacff;
  background-image:url(images/grid-02.png);
  text-align: center;
  padding: 5px;
  z-index:1;
  box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
}

footer p {
  color:#fff;
filter: drop-shadow(1px 1px 0px #0e0e0e9c);
}

.bottom-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index:-1;
  height: 149px; /* match your image height */
  background: url('images/h03bgfrill.gif') repeat-x;
filter: drop-shadow(3px 1px 0px #0e0e0e44);
}

.scrollbox {
  max-height: calc(40vh - 20px); /* fills height of nav minus padding */
  overflow-y: auto; /* adds vertical scroll if content is taller */
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: music;
  gap: 10px; /* spacing between buttons */
}

    .scrollbox::-webkit-scrollbar {
      width: 0;
      /* remove scrollbar space */
      background: transparent;
      /* to make scrollbar invisible */
    }

    .scrollbox::-webkit-scrollbar-thumb {
      background: transparent;
    }
    
            /* orange theme */
        
        #musicplayer{ 
          font-family: 'Comic Sans MS';
          font-weight:bold;
          height:30px;
          width:100%;
          left:0;
          top:0;
          position:fixed;
          margin-bottom:20px;  
          display:flex;
            background-image: linear-gradient(180deg,#4755cfd8 0%, white 45%, #5aadff54 47%, #7e9cff48 100%), url(images/grid-02.png);
         border:ridge 2px #4661fb; /* border around player */
          outline: solid 2px black;  
         box-shadow: inset 10px 0px 6px -10px #6146fb, inset -13px 0px 6px -10px #6746fb, inset 0px 10px 6px -10px #ffffff, inset 0px -13px 6px -10px #fb9146";
            }
         
            .songtitle{ 
            display:block;
            padding:2px; /* padding around song title */
            font-family: 'Comic Sans MS';
            margin-top:4px;
            margin-right: 5px; 
            font-size:15px;
            color:black;
            letter-spacing: 1px; 
        
            background: white;/* background of song title */
            border: gray inset 1px;
               border-radius:6px;
               box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
            }
         
            .controls{
              font-size:12px; /* size of controls */
              text-align:center;
              width:100px;
              height:20px;
              filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
            }
         
            .controls td{
               padding-top:5px; /* padding around controls */
            }
         
            .seeking{
              width:75%;
              background: transparent;/* background color of seeking bar */
              display:flex;
              justify-content: space-evenly;
              padding:7px; /* padding around seeking bar */
               
            }
         
            .current-time{  
              padding-right:5px;
              margin-right: 3px; 
             filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
               
            }
         
            .total-duration{
              padding-left:5px;
              filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
            }
         
           .ctrlimg {
   height:16px;
   width:16px;
   }
    .ctrlimg:hover{
        cursor:help;
    }
            
            input[type=range] {
                width: 100%;
              background: transparent;
            }
            
            input[type=range]:focus {
                outline: none;
            }
            
            input[type=range]::-webkit-slider-runnable-track {
                width: 100%;
                height: 6px; /* thickness of seeking track */
                cursor: help;
                border-radius: 6px;
                background: black; /* color of seeking track */
                border: 1px white solid;
            }
        
            input[type=range]::-webkit-slider-thumb {
              
                height: 30px; /* height of seeking square */
                width: 20px; /* width of seeking square */
                background-image:  url('https://file.garden/Zztv0a9yEhr5pmEq/tumblr_40786d3985453eb5412348aad980ac51_3a9a1088_1280%20(1).gif'); /* image of  seeking square */
                background-size: 25px;
                -webkit-appearance: none;
                margin-top: -10px;
                
            }
            
        input[type=range].volume_slider::-webkit-slider-runnable-track { 
            background: white; /* color of volume seeking track */
             filter:drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);  /* outline of volume seeking track */ 
            }
            
         input[type=range].volume_slider::-webkit-slider-thumb {
            background-image: url(https://file.garden/Zztv0a9yEhr5pmEq/798d7d72_original.png);/* image of volume seeking square */
            background-size: 20px;
            height: 20px; /* height of volume seeking square */
            width: 20px; 
            margin-top: -8px;
           }
         
         
        .slider_container {  
          width: 15%;       /* width of volume seeker */
          display: flex;
          justify-content: center;
          align-items: center;
        }    
        
        
        
        