body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    text-align: center;
}

.hidden { display: none; }

.modal {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 1000;
}

.modal-content {
    background:#222;
    padding: 20px;
    border-radius:10px;
}

#landingPage video {
    width: 80%;
    margin-top: 20px;
}

#acceptTosBtn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background: #ff0055;
    border: none;
    color: white;
    border-radius: 5px;
}

