/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body dengan background putih */
body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container utama */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Video dengan resolusi kecil */
.video {
    width: 320px;
    height: auto;
    border: none;
}

/* Teks status */
.status-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #515151;
    text-align: center;
}
