.rec-container {
    max-width: 800px;
    margin: 0 auto;
}

.rec-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.center-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rec-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
    background: #f0f0f5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.btn--xl {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

.btn--danger {
    background: #d14343;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(209, 67, 67, 0.3);
}
.btn--danger:hover {
    background: #b93838;
    transform: translateY(-1px);
}

.options-row {
    margin-bottom: 24px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.checkbox-card:hover { background: #f9f9fc; }

/* Recording State */
.recording-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #d14343;
    margin-bottom: 30px;
}

.red-dot {
    width: 16px;
    height: 16px;
    background: #d14343;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Preview State */
.video-wrap {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin: 20px 0;
}

video {
    width: 100%;
    height: 100%;
    display: block;
}

.actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hidden { display: none !important; }
.mt-3 { margin-top: 15px; }
.full-width { width: 100%; }
