...
.fan-mode display: flex; justify-content: space-between; gap: 14px; margin-top: 18px;
#logList height: 90px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; padding-right: 6px;
.sub color: #8ca3b9; margin-bottom: 28px; border-left: 3px solid #2dd4bf; padding-left: 14px; font-weight: 400; font-size: 0.9rem; cpu cooling master register code free
<!-- FAN ZONE (Master Control Register) --> <div class="fan-zone"> <div class="fan-header"> <h3>🌀 FAN CONTROLLER · PWM REGISTER</h3> <div class="fan-rpm" id="fanRpmDisplay">1240 RPM</div> </div> <input type="range" id="fanSlider" min="0" max="100" value="45" step="1"> <div class="fan-mode"> <button class="mode-btn" data-mode="silent">❄️ SILENT</button> <button class="mode-btn active" data-mode="balanced">⚖️ BALANCED</button> <button class="mode-btn" data-mode="performance">🔥 PERFORMANCE</button> <button class="mode-btn" data-mode="full">🌀 FULL BLAST</button> </div> </div>
.fan-header h3 margin: 0; font-weight: 600; color: #b9e2ff; display: flex; gap: 8px; align-items: center; .fan-mode display: flex
.temp-critical color: #ff8a7a; text-shadow: 0 0 6px #ff4d4d80;
/* REGISTER / LOG */ .register-log background: #03061760; border-radius: 28px; padding: 14px 20px; margin-top: 20px; font-family: monospace; font-size: 0.75rem; color: #88aadd; border-left: 4px solid #2dd4bf; #logList height: 90px
modeBtns.forEach(btn => btn.addEventListener('click', (e) => const mode = btn.getAttribute('data-mode'); setActiveMode(mode); ); );