body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #111;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: blue;
}

.box {
    font-size: 18px;
    color: white;
    width: 90%;
    max-width: 350px;
    padding: 20px;
    border-radius: 10px;
    background-color: #191919;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    text-align: center;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    position: relative;
}

button {
    height: 40px;
    width: 80px;
    background: white;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

#no {
    position: relative;
}

body.video-page {
    background: #000;
}

.video-title {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 2;
    width: min(90vw, 760px);
    margin: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.85);
    transform: translateX(-50%);
}

.video-player {
    width: 100vw;
    height: 100vh;
    background: #000;
    object-fit: contain;
}

@media (max-width: 480px) {
    .video-title {
        top: 16px;
        font-size: 24px;
    }
}
