:root {
    --font-title: 700 26px/1.1 Inter Display, sans-serif;
    --color-link: rgba(38, 45, 51);
    --color-black: rgba(0, 0, 0);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overscroll-behavior: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

button {
    border: none;
}

a:visited,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 100%;
    height: 100vh;
    min-width: 320px;
    overflow: hidden;
    background: #FFFFFFB2;
}

.stream-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    max-width: 320px;
    background: #FFFFFF1A;
    backdrop-filter: blur(50px);
    padding: 36px 56px 36px 56px;
    border-radius: 16px;
}

.logo-wrapper {
    margin-bottom: 56px;
}

.logo-link {
    display: block;
}

.impress-logo {
    width: 100%;
    height: 28px;
}

.header {
    margin-bottom: 36px;
}

.header__heading {
    font: var(--font-title);
    letter-spacing: -0.04em;
    color: var(--color-black);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stores {
    width: 100%;
}

.stores__item {
    display: block;
    width: 135px;
    height: 40px;
}

.stores__item:not(:last-child) {
    margin-bottom: 10px;
}

.stores__link {
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.stores__icon {
    display: block;
    width: 100%;
    height: 100%;
}

.bg {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    z-index: -1;
}

.bg__top {
    top: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background-image: url("../images/bg-top.png");
}

.bg__bottom {
    bottom: 0;
    left: 0;
    width: 560px;
    height: 460px;
    background-image: url("../images/bg-bottom.png");
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 258px;
    }

    .impress-logo {
        height: 26px;
    }

    .bg {
        width: 280px;
        height: 280px;
    }

    .bg__top {
        width: 220px;
        height: 355px;
        background-image: url("../images/bg-top-mobile.png");
    }

    .bg__bottom {
        width: 300px;
        height: 360px;
        background-image: url("../images/bg-bottom-mobile.png");
    }
}
