body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    position: relative;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 0;
}

header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    padding: 9px 240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    color: #eee;
    font-weight: bold;
    font-size: 1.35em;
    transition: color 0.3s;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: #ff000097;
}

.page-title {
    text-align: center;
    padding: 1px 2px 2px;
    color: #fff;
}

.page-title h1 {
    font-size: 2.5em;
    margin-bottom: 1px;
}

.page-title p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5cm;
    box-sizing: border-box;
    margin: 100;
    max-width: calc(100% - 2cm);
    max-height: calc(100vh - 2cm);
}

video {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.video-description {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.video-description h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.video-description p {
    font-size: 1em;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.cta-buttons a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-buttons a.watch-again {
    background-color: #fff;
    color: #000;
}

.cta-buttons a.watch-again:hover {
    background-color: #f1683a;
    color: #fff;
}

.cta-buttons a.back-home {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons a.back-home:hover {
    background-color: #fff;
    color: #000;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #eee;
    font-size: 0.9em;
    margin-top: 30px;
}

.video-js {
    position: absolute;
    top: 10%;
    right: 10px;
    height: 80%;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}

.vjs-control-bar {
    flex-direction: column !important;
    margin-top: 10px;
}

.vjs-control-bar {
    background: rgba(0, 0, 0, 0.5) !important;
}
