/* सबै अनावश्यक मार्जिन र प्याडिङ हटाउन */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* स्क्रोल बार हटाउन */
    background-color: black;
    display: flex; /* भिडियोलाई बीचमा ल्याउन */
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* भिडियोको अनुपात नबिग्रियोस् */
}

.watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px; /* साइज मिलाउन सक्नुहुन्छ */
    opacity: 0.7;
    pointer-events: none;
}