body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}

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

@media (max-width: 768px) {
    .container {
        width: 90%;
        margin-top: 5vh;
    }
    h1 {
        font-size: 3em;
    }
    .screenshots img {
        width: 80%;
        max-width: 150px;
    }
    .watch-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin-top: 10vh;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.screenshots img {
    width: 45%;
    max-width: 180px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.screenshots img:hover {
    transform: scale(1.1);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox.show img {
    transform: scale(1);
}

.watch-button {
    display: inline-block;
    background-color: red;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    margin: 20px 0;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.watch-button:hover {
    background-color: darkred;
    transform: scale(1.05);
}

h1 {
    font-family: "Freckle Face", serif;
    font-size: 4em;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-poster, .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 2s ease-in-out;
}

.video-poster {
    z-index: 2;
}

.background-video {
    z-index: 1;
    opacity: 0;
}

.video-container video {
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.video-container video.loaded {
    opacity: 1;
}

a.epk-link {
    color: red;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.language-switch {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2;
}

.language-switch a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.language-switch a:hover {
    color: red;
}

.language-switch .active-lang {
    color: white;
	background-color: rgba(255, 72, 75, 0.3); 
    padding: 10px 10px;
    border-radius: 5px;
}

img.logo
{
width:100%;
}
