#record-container {
    position: relative; width: 100vw; height: 100vh;
    background: #000; overflow: hidden;
}
#record-preview {
    width: 100%; height: 100%; object-fit: cover;
    transform: scaleX(-1);
    transition: filter 0.3s ease;
}
.record-header {
    position: absolute; top: 20px; left: 15px; right: 15px;
    display: flex; justify-content: space-between; align-items: center; z-index: 20;
}
.icon-btn { font-size: 1.5rem; cursor: pointer; }
.duration-select {
    background: rgba(0,0,0,0.5); color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px; padding: 6px 12px; font-size: 0.9rem;
}
/* Filters */
.filters-bar {
    position: absolute; bottom: 160px; left: 0; right: 0;
    display: flex; gap: 10px; padding: 10px 15px;
    overflow-x: auto; z-index: 20;
}
.filter-item {
    flex-shrink: 0; background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; padding: 8px 16px;
    color: white; font-size: 0.85rem; cursor: pointer;
    transition: all 0.2s;
}
.filter-item.active { border-color: var(--accent-color); color: var(--accent-color); font-weight: bold; }
/* Progress Bar */
.progress-bar-wrapper {
    position: absolute; bottom: 130px; left: 0; right: 0;
    height: 4px; background: rgba(255,255,255,0.2);
}
.progress-bar {
    height: 100%; width: 0%; background: var(--accent-color);
    transition: width 0.1s linear;
}
/* Record Button */
.record-controls {
    position: absolute; bottom: 40px; left: 0; right: 0;
    display: flex; justify-content: center;
}
.record-btn {
    width: 80px; height: 80px; border-radius: 50%;
    border: 5px solid white;
    background: var(--accent-color);
    cursor: pointer; transition: transform 0.1s;
    box-shadow: 0 0 20px rgba(255,44,85,0.6);
}
.record-btn.recording {
    border-radius: 12px;
    background: #cc0000;
    transform: scale(0.85);
}
.recording-label {
    position: absolute; top: 80px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6); color: white;
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.9rem; z-index: 20;
}
.hidden { display: none !important; }
