* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #020617;
    color: #e5e7eb;
}

/* Overlay */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#overlay .box {
    background: #020617;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

#overlay button {
    margin-top: 15px;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Main */
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

video {
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    background: black;
}

#status {
    margin-top: 10px;
    font-size: 14px;
    color: #38bdf8;
}