.anorex-block {
    background-image: url(/images/Vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    background-position-y: 30px;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 1px 4px 0px #AF0F4C1C;
}


.anorex-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.anorex-text {
    flex: 1;
}

.anorex-visual {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
}

.anorex-phone {
    position: relative;
    width: 420px;
    height: auto;
    z-index: 3;
}

.anorex-phone img {
    width: max-content;
    height: auto;
    border-radius: 20px;
}

/* Убираем дополнительные элементы */
.anorex-coins,
.anorex-charts {
    display: none;
}

.anorex-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: Montserrat, sans-serif;
}

.anorex-description {
    font-size: 20px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.5;
    max-width: 550px;
}

.anorex-features {
    margin: 30px 0;
}

.anorex-feature {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    border: 1px solid #AF0F4C;
    width: fit-content;
}

.anorex-feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.anorex-feature-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.anorex-feature-text {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.4;
    font-weight: 500;
}

.anorex-btn {
    margin-top: 30px;
}

.anorex-link {
    display: inline-block;
    background: #AF0F4C;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.anorex-link:hover {
    background: #AF0F4C;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .anorex-block {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .anorex-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .anorex-title {
        font-size: 24px;
    }

    .anorex-feature {
        padding: 10px 15px;
        margin: 10px 0;
    }

    .anorex-feature-text {
        font-size: 13px;
    }
}