.tiny5-regular {
  font-family: "Tiny5", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
          font-family: "Tiny5", sans-serif;
            margin: 0;
            overflow: hidden;
            background: #87CEEB;
        }
        #canvas {
            position: relative;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(to bottom, #87CEEB 0%, #98D8C8 100%);
        }
        #music-player {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 3px solid #333;
            border-radius: 15px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            flex-wrap: wrap;
            max-width: 90vw;
        }
        #song-select {
            padding: 8px 12px;
            border: 2px solid #333;
            border-radius: 8px;
            background: white;
            font-family: "Tiny5", sans-serif;
            font-size: 14px;
            cursor: pointer;
        }
        .music-btn {
            background: #4ECDC4;
            border: 2px solid #333;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .music-btn:hover {
            background: #45B7D1;
            transform: scale(1.1);
        }
        .music-btn:active {
            transform: scale(0.95);
        }
        #volume-slider {
            width: 100px;
            cursor: pointer;
        }
        .sprite {
            position: absolute;
            width: 100px;
            height: 100px;
            cursor: pointer;
            transition: transform 0.1s;
        }
        .sprite:hover {
            transform: scale(1.1);
        }
        .speech-bubble {
            position: absolute;
            background: white;
            border: 2px solid #333;
            border-radius: 12px;
            padding: 8px 12px;
            font-family: "Tiny5", sans-serif;
            font-size: 14px;
            white-space: nowrap;
            pointer-events: none;
            z-index: 1000;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
        }