@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&amp;family=Noto+Sans+JP&amp;family=PT+Serif:wght@700&amp;display=swap');

:root {
    --quick-anim-duration : 300ms;
    --slow-anim-duration : 800ms;
}

body {
    background-color: black;
    width: 100%;
    color: #fafafa;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
}

#app {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
}

@media (min-width : 768px) {

    body {
        font-size: 18px;
    }

}

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

.navbar {
    display: none;
    padding: 15px 25px 0 25px;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: fixed;
    width: 100%;
    z-index: 5;
    transition: backdrop-filter var(--quick-anim-duration), -webkit-backdrop-filter var(--quick-anim-duration)
}

.navbar-blur {
    backdrop-filter: blur(10.8px) opacity(1);
    -webkit-backdrop-filter: blur(10.8px) opacity(1);
    transition: backdrop-filter var(--quick-anim-duration), -webkit-backdrop-filter var(--quick-anim-duration)
}

.navbar-brand > img {
    width: 149px;
    height: 20.4px;
    object-fit: contain;
    cursor: pointer;
    z-index: 10;
}

@media (min-width: 800.1px) {
    .navbar {
        display: initial;
        padding: 18px 66px 18px 66px;
        justify-content: flex-start;
    }

   .navbar-brand > img {
        width: 157px;
        height: 51px;
    }

}

main {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main > section {
    padding: 2rem 36px;
}

@media (min-width: 800.1px) {
    position: relative;
}

.footer-social-networks {
    display: flex;
    justify-content: center;
    gap: 25px;
    order: -1;
}

.footer-social-networks .icon {
    opacity: 0.7;
    object-fit: contain;
    width: 32px;
    height: 32px;
}

.footer-social-networks .icon:hover {
    opacity: 1;
}

.footer-logo {
    width: 100%;
    height: 43px;
    margin-top: 33px;
}

.footer-logo img {
    display: inline;
    height: 43px;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 10px;
}

.footer-links {
    margin-top: 15px;
    font-size: 12px;
    text-transform: uppercase;
    gap: 25px;
    display: flex;
}

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 8px 0 20px 0;

}

@media (min-width: 800.1px) {

    footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        align-items: flex-end;
        padding-bottom: 31px;
        background-color: transparent;
    }

    .footer-logo {
        margin-top: 0px;
        width: 100%;
    }

    .footer-copyright {
        font-size: 18px;
        margin-top: 0px;
        padding-bottom: 5px;
    }

    .footer-links {
        font-size: 18px;
        margin-top: 0px;
        padding-bottom: 5px;
    }

    .mf-logo {
        width: 146px;
        height: 39px;
    }

}

@media (min-width: 1280px) {

    .footer-social-networks {
        position: absolute;
        right: 60px;
        display: flex;
        gap: 11px;
        height: 26px;
    }

    .footer-social-networks .icon {
        opacity: 0.4;
        object-fit: contain;
        height : 26px;
        width: 26px;
    }

    .footer-social-networks .icon:hover {
        opacity: 0.8;
    }

}

.btn-link {
    text-decoration: underline;
    background: none;
    color: #fafafa;
    border: 0;
    cursor: pointer;
}

.btn > .icon {
    display: inline-block;
}

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

.navbar-toggler {
    width: 39px;
    height: 39px;
    padding: 13.5px 10.5px;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

#body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#body > img {
    width: 301px;
    height: 99px;
    object-fit: contain;
    margin: 0 auto 40px auto;
}

@media (min-width: 800.1px) {
    #body > img {
        width: 621px;
        height: 207px;
    }
}

.video-overlay {
    min-height: 80px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

@media (min-width: 800.1px) {
    .video-overlay {
        display: none;
    }
}

w-100 {
    width: 100%;
}

.uppercase {
    text-transform: uppercase;
}

#stores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 30px;
}

#play-now-button {
    font-family: PTSerif;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    border: 0;
    background: none;
    color: #fafafa;
    text-transform: uppercase;
    margin-top: 50px;
    position: relative;
}

#play-now-button > img {
    height: 54px;
}

#play-now-button > .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
}

#body > p {
    font-family: 'Noto Sans JP', sans-serif;
    max-width: 684px;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}


.desktop {
    display: none;
}

@media (min-width: 800.1px) {

    .desktop {
        display: initial;
    }

    .mobile {
        display: none;
    }
}