/* STYLES 01.02.2026
Developer: LAPSE DEVELOPER
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #f2f3f7;
    --bg2: #fff;
    --bg3: #e3e5ed;
    --text: #191c20;
    --text1: #fff;
    --text2: #212327;
    --text3: #a4a8b2;
    --color1: #139eef;
    --color2: #26adfc;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 15px;
    --shadow: 0px 4px 24px 0px rgb(0 0 0 / 3%);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* MP INSTALL */
.mp-install {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    max-width: 95%;
    width: 800px;
    transform: translate(-50%,-50%);
    background: var(--bg2);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
}

.mp-install:before {
    content: "";
    background: url(../images/bg.jpg) center/cover no-repeat;
    display: block;
    width: auto;
    height: 100px;
    margin: -40px -40px -70px;
}

.mp-install_back {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--dark);
    border: 1px solid var(--light);
    color: #fff;
    backdrop-filter: blur(50px);
    border-radius: 50px;
    overflow: hidden;
}

.mp-install_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

.mp-install_logo img {
    width: 120px;
}

.mp-install_subtitle {
    display: block;
    color: var(--text2);
    font-size: 18px;
    margin: -20px 0 30px;
}

.mp-install_link {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.mp-install_link img {
    background: #000;
    border-radius: var(--radius);
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* MP HOME */
.mp-home {
    background: var(--bg2);
    padding-top: 40px;
    overflow: hidden;
}

.mp-home .mp-install_logo + h1 {
    margin-bottom: 60px;
    text-align: center;
}

.mp-home:before {
    content: "";
    background: url(../images/bg.jpg) center / cover no-repeat;
    display: block;
    width: auto;
    height: 100px;
    margin: -40px -40px -70px;
}

.mp-home_etaps {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .mp-home_etaps {
        grid-template-columns: 1fr;
    }
}

.mp-home_etaps.active {
    background: #eef9ff;
    margin: 30px calc((100% - 100vw) / 2);
    padding: 50px calc((100vw - 100%) / 2);
}

.mp-home_etaps div > span {
    display: inline-block;
    background: var(--color1);
    border: 1px solid var(--color2);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.mp-home_etaps > div i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #33ce1b;
    color: #fff;
    border-radius: 50px;
    margin: 0 10px;
}

.mp-home_etaps img, .mp-home_etaps video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    object-fit: cover;
}

.mp-home_etaps p {
    color: var(--text2);
}

.mp-home_etaps b {
    display: inline-block;
    padding: 2px 10px;
    background: #ffe47c;
    font-size: 14px;
    margin: 0 5px;
}

.mp-home_etaps a:not(.e-btn) {
    color: var(--color2);
    border-bottom: 1px dotted;
}
