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

body {
    font-family: 'Inter', sans-serif;

    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            #f4f4f4 0%,
            #f4f4f4 60%,
            #e9e0d8 100%
        );

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1100px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.logo {
    width: 320px;
    max-width: 90%;
    margin-bottom: 110px;
}

h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #000;

    margin-bottom: 18px;
}

.subtitle {
    font-size: 32px;
    font-weight: 500;
    color: #555;

    margin-bottom: 40px;
}

.marketplaces {
    display: flex;
    gap: 28px;

    align-items: center;
    justify-content: center;

    margin-bottom: 38px;

    flex-wrap: wrap;
}

.marketplaces img {
    width: 120px;
    height: 120px;

    border-radius: 28px;

    transition: transform 0.25s ease;
}

.marketplaces img:hover {
    transform: translateY(-5px);
}

.description {
    font-size: 24px;
    color: #444;

    margin-bottom: 42px;

    max-width: 900px;
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 18px;

    text-decoration: none;

    background: rgba(255,255,255,0.7);

    padding: 18px 34px;

    border-radius: 999px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);

    backdrop-filter: blur(10px);

    transition: transform 0.25s ease;
}

.telegram-button:hover {
    transform: translateY(-4px);
}

.telegram-button img {
    width: 64px;
    height: 64px;
}

.telegram-button span {
    font-size: 40px;
    font-weight: 500;
    color: #4a4a4a;
}

/* ---------- АДАПТАЦИЯ ---------- */

@media (max-width: 900px) {

    .logo {
        width: 260px;
        margin-bottom: 70px;
    }

    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 24px;
    }

    .description {
        font-size: 20px;
    }

    .telegram-button span {
        font-size: 30px;
    }

    .telegram-button img {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 600px) {

    body {
        padding: 16px;
    }

    .logo {
        width: 220px;
        margin-bottom: 55px;
    }

    h1 {
        font-size: 34px;
    }

    .subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .marketplaces {
        gap: 16px;
        margin-bottom: 28px;
    }

    .marketplaces img {
        width: 90px;
        height: 90px;
        border-radius: 22px;
    }

    .description {
        font-size: 16px;
        line-height: 1.5;

        margin-bottom: 30px;
    }

    .telegram-button {
        width: 100%;
        justify-content: center;

        padding: 14px 18px;
    }

    .telegram-button img {
        width: 44px;
        height: 44px;
    }

    .telegram-button span {
        font-size: 22px;
    }
}
