* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
body { background-color: #111; color: #fff; overflow: hidden; } /* Kunci skrin supaya tak boleh scroll bawah */

/* --- BAR ATAS PENGAKSESAN --- */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; background: #222; border-bottom: 1px solid #333; }
.menu-btn { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.status-msg { font-size: 14px; font-weight: bold; color: #25d366; }

/* --- MENU SISI (BURGER MENU) TERSEMBUNYI --- */
.side-menu { position: fixed; top: 0; left: -350px; width: 320px; height: 100vh; background: #1a1a1a; z-index: 100; transition: 0.3s ease-in-out; padding: 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.5); overflow-y: auto; }
.side-menu.open { left: 0; }
.close-btn { background: #ff3b30; color: #fff; border: none; padding: 10px; width: 100%; border-radius: 8px; font-weight: bold; margin-bottom: 20px; cursor: pointer; }
input[type="text"], input[type="search"] { width: 100%; padding: 12px; border: 1px solid #444; background: #222; color: #fff; border-radius: 8px; margin-bottom: 15px; font-size: 16px; }
.log-item { background: #222; padding: 10px; border-radius: 6px; margin-bottom: 10px; font-size: 12px; border-left: 4px solid #007aff; }

/* --- KAWASAN KERJA UTAMA (WORKSPACE) --- */
.workspace { display: flex; flex-direction: column; height: calc(100vh - 55px); padding: 10px; }
.preview-container { display: flex; flex-direction: row; justify-content: center; gap: 15px; flex-grow: 1; min-height: 0; }

.canvas-wrap { position: relative; background: #000; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.canvas-wrap::before { content: attr(data-label); position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.7); padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: bold; z-index: 10; color:#fff; }

/* Nisbah Fleksibel untuk Kanvas */
.land { flex: 1.77; /* Menghampiri nisbah 16:9 */ border: 1px solid #444; } 
.port { flex: 0.56; /* Menghampiri nisbah 9:16 */ border: 1px solid #444; }

canvas { width: 100%; height: 100%; object-fit: contain; }
video { display: none; }

/* --- BUTANG RAKAM --- */
.controls { display: flex; justify-content: center; padding: 10px 0; }
.btn-action { width: 300px; padding: 15px; border-radius: 50px; font-size: 18px; font-weight: bold; border: none; cursor: pointer; text-transform: uppercase; }
.btn-record { background: #ff3b30; color: #fff; }
.btn-stop { background: #fff; color: #000; display: none; }
