@font-face {
    font-family: "persona3";
    src: url("fonts/p3font.TTF");
}

/* Reset e layout base */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Vídeos */
#bg-video, #bg-video-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#bg-video-mobile {
    display: none;
}

/* Container central */
.container-page {
    width: 100%;
    max-width: 1300px;
    padding: 20px;
}

/* MENU */
.menu {
    font-family: "persona3";
    font-size: 2em;
    background: rgba(0, 200, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 15px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}

.linkmenu {
    color: white;
    text-decoration: none;
}
.linkmenu:hover {
    text-decoration: none;
}

.atlus {
    height: 40px;
    width: auto;
}

/* VIDEO RESPONSIVO */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 56.25%; /* 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 768px) {

    #bg-video { display: none !important; }
    #bg-video-mobile { display: block !important; }

    .menu {
        font-size: 1.4em;
        flex-wrap: wrap;
        gap: 8px;
    }

    .container-page {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .menu {
        font-size: 1.2em;
        padding: 10px;
    }

    .container-page {
        padding: 10px;
    }
}
