body {
    font-family: Arial, sans-serif;
    background: #faf6f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

h1, h2 {
    text-align: center;
}

.question {
    margin: 25px 0;
    font-size: 18px;
    text-align: center;
}

input {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    background: #d96b6b;
    color: white;
    border: none;
    border-radius: 8px;
}

button:active {
    transform: scale(0.98);
}

#status {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

#preview, #playback {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 10px;
    background: black;
}

.controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#timer {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}