@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+JP&family=PT+Serif:wght@700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: black;
    width: 100%;
    height: 100vh; 
    color: #fafafa;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    letter-spacing: normal;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main > section {
    padding: .5rem 30px 2rem 30px;
}

@media (min-width: 768px) {
    main > section {
        padding: 1rem 36px 3rem 36px;
    }
}

#body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#body > img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

@media (min-width: 768px) {
    #body > img {
        width: 740px;
        height: 167px;
        margin: 0 auto 40px auto;
    }
}

#body > p {
    font-family: 'Noto Sans JP', sans-serif;
    max-width: 280px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: justify;
    color: #fff;
}

@media (min-width: 768px) {
    #body > p {
        font-size: 20px;
        max-width: 680px;
    }
}

header {
	width: 100%;
	height: 22px;
	display: inline-block;
	top: 0;
	z-index: 12;
}

#links-holder {
	float: right;
}

#links-holder a {
	display: inline-block;
}

#links-holder .forum-link {
	opacity: 1;
    width: 45px;
	height: 20px;
	background: url("images/forum-text.png") no-repeat center;
	background-size: 100%;	
	text-indent: -9000px;
	margin: 15px 5px 0px 5px;
	float: left;
}

@media (min-width: 768px) {
    #links-holder .forum-link {
        width: 80px;
	    height: 32px;
    }
}

#links-holder .forum-link:hover {
    opacity: .7;
}

#links-holder .shop-link {
    opacity: 1;
	width: 60px;
	height: 28px;
	background: url("images/shop.png") no-repeat center;
	background-size: 100%;	
	text-indent: -9000px;
	margin: 12px 19px 0px 5px;
	float: left;
}

@media (min-width: 768px) {
    #links-holder .shop-link {
        width: 100px;
	    height: 40px;
    }
}

#links-holder .shop-link:hover {
    opacity: .7;
}

#stores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

@media (min-width: 768px) {
    #stores {
        margin-top: 30px;
    }
}

#play-now-button {
    font-family: PTSerif;
    font-size: 22px;
    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: 20px;
    position: relative;
}

@media (min-width: 768px) {
    #play-now-button {
        font-size: 32px;
        margin-top: 50px;
    }
}

#play-now-button > img {
    height: 32px;
}

@media (min-width: 768px) {
    #play-now-button > img {
        height: 54px;
    }
}

#play-now-button > .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px 0 20px 0;
    font-size: small;
}

footer p {
    margin: 5px;
}

.footer-social-networks {
    display: flex;
    justify-content: center;
    gap: 25px;
    order: -1;
}

.footer-social-networks .icon {
    opacity: 1;
    object-fit: contain;
    width: 32px;
    height: 32px;
}

.footer-social-networks .icon:hover {
    opacity: 0.7;
}

#legal {
	padding: 0;
}

#legal .policy-link {
    font-weight: 700;
}

#legal .mf-logo {
	width: 40px;
	height: 50px;
	background: url("images/mf-face.png") no-repeat center;
	background-size: 100%;	
	text-indent: -9000px;
	margin: 2px 0px 1px 7px;
	float: left;
}

.background {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
}

.uppercase {
    text-transform: uppercase;
}

.desktop {
    display: none;
}

@media (min-width: 768px) {

    .desktop {
        display: initial;
    }

    .mobile {
        display: none;
    }
}