* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: initial;
    font-family: "Inter", sans-serif;
}

html {
    color-scheme: dark;
}

a {
    text-decoration: none;
}

#background {
    z-index: -1;

    canvas {
        filter: blur(100px);
    }
}

.container {
    max-width: 1320px;
    position: relative;

    margin-top: 32px;
    margin-bottom: 32px;
    margin-inline: auto;
    padding: 0 15px;
}

.block {
    display: flex;
    width: 100%;
    padding: 35px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

/* HEADER */
.block__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.header__text {
    color: #FFF;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header__line {
    width: 64px;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(132deg, #FF5F6D 0%, #FFC371 100%);
}

/* STEPS */
.block__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;

    width: 100%;
}

.steps__step {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.step__number {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 51px;
    padding: 6px;

    font-weight: 700;
    font-size: 40px;

    background: linear-gradient(132deg, #FF5F6D 0%, #FFC371 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step__title {
    font-weight: 500;
    font-size: 24px;
}

/* STEP CLIENTS */
.step__launchers {
    display: none;
    grid-template-columns: repeat(3,1fr);
    align-items: flex-start;
    gap: 20px;
}

.launchers__launcher {
    display: flex;
    flex-direction: column;
    gap: 14px;

    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.launcher__operating_system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    font-size: 18px;
}

.launcher__operating_system img {
    width: 70px;
    height: 70px;
}

.launcher__downloads {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.downloads__download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    padding: 10px 6px;
    border-radius: 8px;

    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

.downloads__download_primary {
    background: linear-gradient(132deg, #FF5F6D 0%, #FFC371 100%)
}

.downloads__download_secondary {
    background: rgba(255, 255, 255, 0.05);
}

/* MEDIA "md" */
@media only screen and (min-width: 768px) {
    .block {
        padding: 64px 96px;
    }

    .header__text {
        font-size: 36px;
    }
}

/* MEDIA "lg" */
@media only screen and (min-width: 1024px) {
    .step__launchers {
        display: grid;
    }
}

/* MEDIA "xl" */
@media only screen and (min-width: 1472px) {
    .container {
        padding: unset;
    }
}