* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Lato, sans-serif;
    background-color: #2071FE;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/ic_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}



.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.main-content {
    max-width: 45vw;
    width: 100%;
    margin-top: 177px;
    margin-left: 220px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6px;
}

.main-title {
    font-family: 'Lato', Lato, sans-serif;
    font-weight: 700;
    font-size: 100px;
    color: #FFFFFF;
    line-height: 120px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

.logo-icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    margin-bottom: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.description {
    font-family: 'Lato', Lato, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 6px;
    margin-bottom: 52px;
}

.app-button {
    background: #FFFFFF;
    border-radius: 200px;
    font-family: 'Lato', Lato, sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: #1D1D1D;
    line-height: 90px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    border: none;
    cursor: pointer;
    min-width: 364px;
    display: inline-block;
    transition: all 0.3s ease;
}

.app-button:hover {
    transform: scale(1.02);
    background: #f5f5f5;
}

.app-button:active {
    transform: scale(0.98);
}

.footer-links {
    position: absolute;
    left: 220px;
    bottom: 122px;
    font-family: 'Lato', Lato, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    line-height: 19px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    z-index: 10;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.separator {
    margin: 0 8px;
    color: #000000;
    font-weight: 700;
}

@media (max-width: 1480px) {
    .main-content {
        margin-left: 160px;
    }

    .footer-links {
        left: 160px;
        bottom: 100px;
    }

}

@media (max-width: 1200px) {
    .main-content {
        margin-left: 60px;
    }

    .footer-links {
        left: 60px;
        bottom: 60px;
    }
}

@media (max-width: 999px) {
    .main-content {
        max-width: 90%;
        margin-left: 40px;
        margin-top: 150px;
    }

    .main-title {
        font-size: 60px;
        line-height: 80px;
        white-space: normal;
        word-break: keep-all;
    }

    .logo-icon {
        width: 54px;
        height: 54px;
    }

    .description {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .app-button {
        font-size: 32px;
        line-height: 80px;
        padding: 0 40px;
        min-width: 240px;
    }



    .container {
        pointer-events: none;
    }

    .container>* {
        pointer-events: auto;
    }

}