* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1a1a2e;
    color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
h1 { margin-bottom: 20px; color: #e94560; }
.controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}
select, button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
select { background: #16213e; color: #eee; }
button { background: #e94560; color: #fff; }
button:hover { background: #c73e54; }
button:disabled { background: #555; cursor: not-allowed; }
#status {
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}
.connected { background: #2d6a4f; }
.disconnected { background: #6a2d2d; }
.connecting { background: #6a5a2d; }
video {
    width: 100%;
    max-width: 960px;
    background: #000;
    border-radius: 8px;
}
.stats-panel {
    width: 100%;
    max-width: 960px;
    margin-top: 15px;
    background: #16213e;
    border-radius: 8px;
    padding: 15px;
    display: none;
}
.stats-panel h3 {
    color: #e94560;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a1a3e;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.stat-item {
    background: #0a0a1a;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}
.stat-label { font-size: 11px; color: #999; margin-bottom: 4px; }
.stat-value { font-size: 18px; color: #4ecca3; font-weight: bold; }
.stat-unit { font-size: 11px; color: #666; }
.connection-type { font-size: 12px; color: #999; margin-top: 10px; }
.hls-badge {
    display: inline-block;
    background: #e9c46a;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
}
.webrtc-badge {
    display: inline-block;
    background: #4ecca3;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
}
