body {

    margin: 0;
    padding: 0;

    background: #0f172a;

    color: white;

    font-family: Arial;

}

.container {

    width: 90%;

    max-width: 800px;

    margin: auto;

    text-align: center;

    padding-top: 30px;

}

h1 {

    margin-bottom: 20px;

}

video {

    width: 100%;

    max-width: 500px;

    border-radius: 12px;

    border: 2px solid white;

}

button {

    margin-top: 20px;

    padding: 15px 30px;

    font-size: 18px;

    border: none;

    border-radius: 10px;

    background: #2563eb;

    color: white;

    cursor: pointer;

}

button:hover {

    background: #1d4ed8;

}

#chatBox {

    margin-top: 30px;

    background: #1e293b;

    padding: 20px;

    border-radius: 12px;

    min-height: 200px;

    text-align: left;

    overflow-y: auto;

}

.message {

    margin-bottom: 15px;

    padding: 10px;

    border-radius: 10px;

}

.user {

    background: #2563eb;

}

.ai {

    background: #334155;

}
