@charset "utf-8";
/* CSS Document */
body {
            margin: 0;
            overflow: hidden;
            background-color: #111111;
            touch-action: none;
            font-family: "Inter", sans-serif;
        }
        #info {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            z-index: 100; display: none;
        }
        #controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            z-index: 100; display: flex;align-items: center;
        }
        #toggleWrap {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            z-index: 100; 
            display: none;
        }
        #musicControls {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            z-index: 100;
            width: 250px; display: none;
        }
        .slider-container {
            margin: 10px 0; display: none;
        }
        label {
            display: inline-block;
            width: 120px;
            text-align: right;
            margin-right: 10px;
        }
        input[type="range"] {
            width: 150px;
            vertical-align: middle;
        }
        .value-display {
            display: inline-block;
            width: 30px;
            text-align: left;
            margin-left: 10px;
        }
        button {
            margin: 0 5px;
            cursor: pointer;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px; border-radius: 50%; text-indent: -9999px; 
             cursor: pointer; width: 100px; height: 100px; appearance:none; background: none; background-color: transparent; box-shadow: none; background-color: rgba(17, 17, 17, .5); margin: 0 10px; background-repeat: no-repeat; background-position: center; background-size: 60px;
        }
        button:hover {
           
        }
        #playBtn {
             background-image: url("../img/play.svg");
        }
        #playBtn:hover {
            
        }
        #playBtn.playing {
            background-image: url("../img/pause.svg");
        }
        #playBtn.playing:hover {
           
        }
#generateBtn {background-image: url("../img/next.svg"); background-repeat: no-repeat; background-position: center; background-size: 30px;width: 70px; height: 70px;}
#none { opacity:0;}
        #loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 10px;
            font-size: 24px;
            z-index: 200;
        }
        .music-param {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }
        .music-param-name {
            width: 40%;
            text-align: right;
            margin-right: 10px;
            font-size: 14px;
        }
        .music-param-value {
            width: 60%;
            text-align: left;
            font-size: 14px;
        }
        #musicParams {
            margin-top: 15px;
            border-top: 1px solid #444;
            padding-top: 10px; display: none;
        }
        #visualizer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-color: rgba(0, 0, 0, 0);
            z-index: 90;
        }

h1 { color: #FFF; position: fixed; top:20px; left: 20px; font-size: 10vw; margin: 0; line-height: 1;}
@media (orientation: landscape) {
h1 { font-size: 5vw;}
}