/* Улучшенные стили с эффектами, градиентами и анимациями */

.btn-glow {
    display: inline-block;
    padding: 20px 40px;
    margin: 15px;
    font-size: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #00ff7f, #32cd32);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease, box-shadow 0.35s ease;
}

.btn-glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,0,0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0,255,0,0.8), 0 0 60px rgba(0,255,0,0.6);
}

.btn-glow:hover::before {
    opacity: 1;
}

.download-app-block {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 70px 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.text-white {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-white {
    background-color: #ffffff;
    color: #007bff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

.section-title-line {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #dddddd);
    margin: 15px auto;
    border-radius: 2px;
}