* {
    margin: 0;
    padding: 0;
}

:root {
    --max-width: 480px;
}

img {
    vertical-align: top;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    background-color: #131111;
}

.container .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.container .header img {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.container .content-picture img {
    width: 100%;
}

.container .information {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    margin-top: -6rem;
    padding-bottom: 20vh;
    position: relative;
    z-index: 1;
}

.container .information img {
    width: 100%;
    margin-bottom: 1rem;
}

.container .footer {
    position: fixed;
    width: 100%;
    max-width: var(--max-width);
    left: 50%;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #ff4e00;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    transform: translate(-50%);
}

.container .footer .footer-tips {
    padding: 1rem;
}

.container .footer .footer-tips img {
    width: 100%;
}

.container .footer .download-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.container .footer .download-container a {
    flex: 1;
    display: block;
    padding: 0 0.2rem;
}

.container .footer .download-container a img {
    width: 100%;
}

.container .footer .warning {
    width: 100%;
    padding: 0.6rem 0;
    text-align: center;
    box-sizing: border-box;
    color: white;
    font-size: 0.9rem;
}

.android-modal {
    max-width: var(--max-width) !important;
}

.toast {
    position: fixed;
    top: 40%;
    left: 50%;
    z-index: 99;
    transform: translate(-50%,-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 9px solid;
    border-color: rgba(0, 0, 0, 0.5);
    border-right-color: #ff4e02;
    -webkit-animation: spinner-zp9dbg 1s infinite linear;
    animation: spinner-zp9dbg 1s infinite linear;
}

@-webkit-keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@media screen and (max-width: 640px) {
    :root {
        --max-width: 100vw;
    }
}