body {transition: opacity ease-in 0.2s; } 
body[unresolved] {opacity: 0; display: block; overflow: hidden; position: relative; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #333333;
    overflow-x: hidden;
    color: #d7d7d7;
}

h1 {
    margin: 0;
    font-weight: 600;
}

h2 {
    background: #303c66;
    color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: normal;
    display: inline-block;
    margin: 5px 0 20px 0;
    font-weight: 600;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
}

.left img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 20px #00000038;
}

.right {
    max-width: 450px;
}

.right h1 {
    font-size: 32px;
    line-height: 30px;
    margin: 0 0 10px 0;
}

.right p {
    font-size: 18px;
    line-height: 1.5;
}

.qr {
    max-width: 120px;
    padding: 10px;
    margin: 20px 0;
}

.link {
    display: inline-block;
    background: #5352b0;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding: 13px 30px;
    box-shadow: 0 10px 20px #5352b0;
}

.link:hover {
    background: #545397;
}

.link svg {
    margin: 0px 5px -3px 0;
}

.stores {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.store-icon {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .stores {
        margin: 25px auto 0 auto;
        display: inline-flex;
    }

    .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .right {
        background: #1c1c1c;
        border-radius: 12px;
        margin-top: -160px;
        padding: 30px 30px 40px 30px;
    }

    .right h1 {
        font-size: 31px;
    }

    .right p {
        font-size: 16px;
    }
}
