body {
    font-family: 'SF Pro Display', 'SF Pro', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    width: 100vw;
    height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 0 0;
    margin-bottom: 0;
}

.logo {
    max-width: 230px;
    height: auto;
}

main {
    width: 100vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

.footer-element {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
}

.card-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100vw;
    max-width: 90vw;
    margin: 0 auto;
    flex-direction: column;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    gap: 4px;
    transition: transform 0.3s ease;
}

.card-content {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
}

.card-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-number {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.card-title {
    font-weight: 700;
    font-size: 8px;
    line-height: 1.2;
}

.card-button {
    position: relative;
    width: 130px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.amabasador {
    max-width: 480px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 641.06/511.00;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.amabasador img {
    width: 100%;
    height: auto;
}

.download-app {
    display: none;
}


@media (max-width: 1300px) {
    .amabasador {
        max-width: 480px;
    }

    #lineCtrl {
        min-height: 220px;
    }

    .card-container {
        gap: 0px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: scroll;
    }

    .background-image {
        background-image: url('/images/bg-cskh-mb.png');
    }

    .container {
        padding-top: 30px;
    }

    .logo {
        max-width: 150px;
    }

    .amabasador {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 450px;
        padding: 10px;
    }

    .amabasador img {
        width: 100%;
        height: auto;
        max-width: 360px;
    }

    .card-container {
        width: 100%;
        flex-wrap: wrap;
        row-gap: 3;
    }

    .card {
        width: 30%;
    }

    .download-app {
        margin-top: 15px;
        width: 90%;
        max-width: auto;
        display: block;
    }

    .box-download {
        background-image: url(./../images/box-download.png);
        max-width: 768px;
        width: 100%;
        height: 20vw;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: block;
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 27px 12px 17px;
        box-sizing: border-box;
        justify-content: center;
    }

    .box-download img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) and (min-height: 800px) {
    .container {
        padding-top: 30px;
    }

    .amabasador {
        padding: 0px;
        margin: 8px auto;
    }
}