body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6f8;
}

header {
    text-align: center;
    padding: 20px;
    background: #1f3c88;
    color: white;
}

.video-container {
    max-width: 900px;
    margin: 30px auto;
}

/* TELEPROMPTER */

.teleprompter-container {
    max-width: 1000px;
    height: 400px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    border: 2px solid #1f3c88;
    border-radius: 10px;
    background: white;
}

.transcript {
    position: absolute;
    width: 100%;
    transition: transform 0.4s ease;
}

.line {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.line.active {
    background: #dce6ff;
}

.english {
    font-weight: bold;
}

@media (max-width: 768px) {
    .line {
        grid-template-columns: 1fr;
    }
}
