/* Footer ported from mp_game_home (src/components/Footer.astro) */

.site-footer {
    background: #fff;
    color: #000;
    width: 100%;
    z-index: 20;
    padding: calc(100vw * 20 / 390) calc(100vw * 16 / 390);
}

@media (min-width: 1024px) {
    .site-footer {
        min-height: calc(100vw * 352 / 1920);
        padding: calc(100vw * 60 / 1920) calc(100vw * 80 / 1920);
    }
}

.site-footer__inner {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: calc(100vw * 16 / 390);
}

@media (min-width: 1024px) {
    .site-footer__inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        text-align: left;
        gap: calc(100vw * 126 / 1920);
    }
}

.site-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * 8 / 390);
}

@media (min-width: 1024px) {
    .site-footer__col--brand {
        align-items: flex-start;
        width: calc(100vw * 635 / 1920);
        gap: calc(100vw * 10 / 1920);
    }
}

.site-footer__col--info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * 6 / 390);
}

@media (min-width: 1024px) {
    .site-footer__col--info {
        align-items: flex-start;
        width: calc(100vw * 649 / 1920);
        gap: calc(100vw * 20 / 1920);
    }
}

.site-footer__brand-row {
    display: flex;
    align-items: center;
    gap: calc(100vw * 10 / 390);
}

@media (min-width: 1024px) {
    .site-footer__brand-row {
        gap: calc(100vw * 24 / 1920);
    }
}

.site-footer__lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * 6 / 390);
}

@media (min-width: 1024px) {
    .site-footer__lines {
        align-items: flex-start;
        gap: calc(100vw * 20 / 1920);
    }
}

.site-footer__logo {
    width: auto;
    object-fit: contain;
    height: calc(100vw * 28 / 390);
}

@media (min-width: 1024px) {
    .site-footer__logo {
        height: calc(100vw * 61 / 1920);
    }
}

.site-footer__license-badge {
    width: auto;
    object-fit: contain;
    height: calc(100vw * 24 / 390);
}

@media (min-width: 1024px) {
    .site-footer__license-badge {
        height: calc(100vw * 61 / 1920);
    }
}

.site-footer__company {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: calc(100vw * 13 / 390);
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 1024px) {
    .site-footer__company {
        font-size: calc(100vw * 32 / 1920);
        line-height: calc(100vw * 36 / 1920);
    }
}

.site-footer__note {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: calc(100vw * 11 / 390);
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 1024px) {
    .site-footer__note {
        font-size: calc(100vw * 24 / 1920);
        line-height: calc(100vw * 28 / 1920);
    }
}

.site-footer__text {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: calc(100vw * 9 / 390);
    line-height: 1.4;
    margin: 0;
}

.site-footer__text a:hover {
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .site-footer__text {
        font-size: calc(100vw * 20 / 1920);
        line-height: calc(100vw * 24 / 1920);
    }
}

.site-footer__badge {
    width: auto;
    object-fit: contain;
    height: calc(100vw * 60 / 390);
}

@media (min-width: 1024px) {
    .site-footer__badge {
        height: calc(100vw * 167 / 1920);
    }
}
