@import url("https://fonts.googleapis.com/css?family=Inter:400,500,700,600");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    background: linear-gradient(180deg, #07090c 0%, #0a0c11 100%);
    color: white;
    font-family: "Inter", Helvetica;
}
.box {
    width: 100%;
    min-height: 100dvh;
    padding: 8% 8% 10% 8%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.backgroundImage {
    width: 100%;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.backgroundLight {
    border-radius: 1000px;
    width: 1329px;
    height: 1329px;
    filter: blur(1000px);
    background: #2c8ae4;
    position: absolute;
    left: 800px;
    top: 800px;
    z-index: -2;
}
.headline {
    font-weight: 700;
    font-size: 24px;
    line-height: 127%;
    letter-spacing: -0.05em;
}
span {
    color: #a2ff68;
}
.subTitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 133%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}
.wrapperPlaces {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}
.place {
    width: 100%;
    height: 70px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    background: rgba(8, 10, 14, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
}
.icon {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(20, 21, 27, 0) 0%, rgba(162, 255, 104, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.icon svg {
    width: 23px;
    height: 23px;
}
.place h2 {
    font-weight: 700;
    font-size: 15px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: #fff;
}
.wrapperButton {
    width: 100%;
    position: relative;
}
.wrapperButton button {
    width: 100%;
    height: 70px;
    border-radius: 15px;
    box-shadow: 0 0 250px 0 rgba(44, 138, 228, 0.3);
    background: #2c8ae4;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.03em;
    border: 0px;
    outline: 0px;
    cursor: pointer;
}
.wrapperButton p {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    margin-top: 12px;
}
.wrapperButton .iconButton {
    width: 66px;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(-50%, -50%) rotate(-142deg);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translate(-50%, -50%) rotate(-142deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-142deg) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-142deg) translateY(0);
  }
}
.wrapperButton .iconButton2 {
    width: 238px;
    position: absolute;
    bottom: -40px;
    right: -30px;
    transform: translate(50%, 50%) rotate(42deg);
    filter: blur(3px);
    animation: float2 3s ease-in-out infinite;
    opacity: .95;
}
@keyframes float2 {
  0% {
    transform: translate(50%, 50%) rotate(42deg) translateY(0);
  }
  50% {
    transform: translate(50%, 50%) rotate(42deg) translateY(-10px);
  }
  100% {
    transform: translate(50%, 50%) rotate(42deg) translateY(0);
  }
}


/* ---------- DESKTOP ENHANCEMENTS (v2) ---------- */
@media screen and (min-width: 800px) {
    .box {
        padding: 7% 8% 8% 8%;
        justify-content: space-evenly;
    }
    /* Две колонки у карточек */
    .wrapperPlaces {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 25px;
        margin-top: 50px;
        max-width: 520px;
    }

    .place {
        height: 90px;
        padding: 20px 24px;
        border-radius: 20px;
    }

    /* Кнопка ближе к контенту */
    .wrapperButton {
        margin-top: 45px;
        align-self: flex-start;
        max-width: 380px;
    }

    .wrapperButton button {
        height: 70px;
        font-size: 18px;
    }

    /* Голубой фон – смещение вправо и вниз */
    .backgroundLight {
        width: 1600px;
        height: 1600px;
        left: 60%;
        top: 60%;
        transform: translate(-30%, -30%);
        filter: blur(1000px);
        opacity: 0.8;
    }

    /* Немного сдвигаем правую часть ближе к центру */
    .backgroundImage {
        right: -5%;
        max-width: 580px;
    }
}

/* ---------- LARGE DESKTOP (>1300px) ---------- */
@media screen and (min-width: 1300px) {
    .wrapperPlaces {
        gap: 15px 30px;
        max-width: 600px;
    }

    .backgroundLight {
        left: 65%;
        top: 55%;
        filter: blur(1200px);
        opacity: 0.75;
    }

    .backgroundImage {
        right: 5%;
        max-width: 650px;
    }
}
