@charset "utf-8";
/* CSS Document */
body {
            font-family: "DM Sans", sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
            overflow: hidden;
        }

h1 { margin: 0; position: fixed; top:0; left: 0;  font-size: 12vw; font-weight: 900; line-height: 1; padding: 5vw;}

@media (orientation: landscape) {
  h1 { font-size: 6vw; padding: 2.5vw;}
}


        header {
            display: none;
        }
        .controller {
            display: none;
        }
        .buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 1000;
        }
        button {
            background-color:transparent;
            color: #000;
            border: none;
            padding: 0;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;width: 80px; height: 80px;
        }
        button:hover {
            
        }
        button:disabled {
            background-color: #95a5a6; display: none;
            cursor: not-allowed;
        }


.material-icons-outlined {
    font-size: 60px;
}

        .settings {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .checkbox-group div {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-right: 5px;
        }
        .setting-group {
            margin-bottom: 15px;
        }
        .setting-group h3 {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 16px;
        }
        .setting {
            margin-bottom: 8px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        select, input[type="range"] {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        .status {
            text-align: center;
            font-style: italic;
            margin-top: 15px;
            color: #7f8c8d;
        }
        .visualizer {
            height: 150px;
            background-color: #2c3e50;
            border-radius: 10px;
            margin-top: 20px;
            overflow: hidden;
            position: relative;
        }
        .node {
            position: absolute;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        .pollock-visualizer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            border-radius: 0;
            margin: 0;
            overflow: hidden;
            position: relative;
        }
        .pollock-canvas {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .color-system-info {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(44, 62, 80, 0.9);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 12px;
            z-index: 1001;
            max-width: 300px;
        }
        
        .color-system-info h4 {
            margin: 0 0 10px 0;
            font-size: 14px;
            text-align: center;
        }
        
        .color-system-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .color-system-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .color-preview {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .color-system-item.percussion .color-preview {
            background: linear-gradient(45deg, #ff0000, #ff3333);
        }
        
        .color-system-item.synth .color-preview {
            background: linear-gradient(45deg, #00ccff, #33ddff);
        }
        
        .color-system-item.brass .color-preview {
            background: linear-gradient(45deg, #ffcc00, #ffdd33);
        }
        
        .color-system-item.woodwind .color-preview {
            background: linear-gradient(45deg, #0000ff, #3333ff);
        }
        
        .color-system-item.piano .color-preview {
            background: linear-gradient(45deg, #ff0080, #ff3399);
        }

