/* Start custom CSS for text-editor, class: .elementor-element-e5b7f24 *//* Основной фон */
body {
    background-color: #fdfdfd;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}



/* Заголовок страницы */
.rage-title {
    font-size: 3em;
    font-weight: 800;
    color: #ff6a00;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out, glow 1.5s infinite alternate;
    text-shadow: 0 0 10px #ff6a00, 0 0 20px #ff6a00, 0 0 30px #ff6a00;
}


}
.rage-title:hover {
    color: #ff0979;
    text-shadow: 0 0 10px #ff0979, 0 0 20px #ff0979, 0 0 30px #ff0979;
}

/* Заголовки секций */
.rage-section-title {
    font-size: 2.5em;
    color: #222;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #ff6a00;
    animation: slideIn 1s ease-out;
    transition: color 0.3s ease-in-out;
}

.rage-section-title:hover {
    color: #ff6a00;
    transform: scale(1.05);
}

.rage-feature {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    animation: bounceIn 1s ease-out;
}

.rage-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.rage-feature-title {
    font-size: 1.7em;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 12px;
    position: relative;
    animation: glowEffect 1.5s infinite alternate;
}

.rage-feature-description {
    font-size: 1.3em;
    color: #444;
    line-height: 1.6;
    text-align: left;
    transition: color 0.3s ease-in-out;
}

.rage-feature-description:hover {
    color: #ff6a00;
    text-decoration: underline;
}

/* Эффект подсветки при наведении */
.rage-feature-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ff6a00;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.rage-feature-title:hover::after {
    transform: scaleX(1);
}

/* Анимации */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowEffect {
    0% {
        text-shadow: 0 0 5px #ff6a00, 0 0 10px #ff6a00, 0 0 20px #ff6a00;
    }
    100% {
        text-shadow: 0 0 20px #ff6a00, 0 0 40px #ff6a00, 0 0 60px #ff6a00;
    }
}

/* Медиазапросы для мобильных устройств */
@media screen and (max-width: 768px) {
    .rage-title {
        font-size: 2.2em;
        text-align: center;
        margin-bottom: 20px;
    }

    .rage-section-title {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .rage-feature {
        padding: 15px;
        margin: 20px 0;
    }

    .rage-feature-title {
        font-size: 1.4em;
    }

    .rage-feature-description {
        font-size: 1.1em;
    }

    .rage-cta-button {
        font-size: 1.5em;
        padding: 12px 30px;
    }
}

@media screen and (max-width: 480px) {
    .rage-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .rage-section-title {
        font-size: 1.7em;
        margin-top: 20px;
        margin-bottom: 8px;
    }

    .rage-feature {
        padding: 12px;
        margin: 15px 0;
    }

    .rage-feature-title {
        font-size: 1.3em;
    }

    .rage-feature-description {
        font-size: 1em;
    }

    .rage-cta-button {
        font-size: 1.3em;
        padding: 10px 25px;
    }
}

/* Контейнер для кнопки */
.rage-button-container {
    text-align: center;  /* Центрируем кнопку по горизонтали */
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Стиль кнопки */
.rage-cta-button {
    display: inline-block;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    background-color: #ff6a00;
    padding: 15px 40px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.rage-cta-button:hover {
    background-color: #ff0979;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rage-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff6a00;
    border-radius: 30px;
    z-index: -1;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.rage-cta-button:hover:before {
    transform: scaleX(1);
}

.rage-cta-button span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Медиазапросы для мобильных устройств */
@media screen and (max-width: 768px) {
    .rage-cta-button {
        font-size: 1.6em;
        padding: 12px 30px;
    }
}

@media screen and (max-width: 480px) {
    .rage-cta-button {
        font-size: 1.4em;
        padding: 10px 25px;
    }
}/* End custom CSS */