.gradient-text {
    background: linear-gradient(90deg, #ff4d6d, #ff758f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.network-bar {
    background: linear-gradient(90deg, #ff4d6d, #ff758f);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.promo-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
}

.service-card:hover img {
    transform: scale(1.05);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.3);
}

.category-btn {
    transition: all 0.3s ease;
}

.category-btn.active {
    background: linear-gradient(90deg, #ff4d6d, #ff758f);
    color: white;
}

.rocket-animation {
    animation: rocket-bounce 2s ease-in-out infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.privacy-section {
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.1), rgba(255, 117, 143, 0.1));
}

.register-pulse {
    animation: register-pulse 2s infinite;
}

@keyframes register-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
    }
}

.register-pulse:hover {
    animation: none;
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
}

.mobile-menu-enter {
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-exit {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
} 

.burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.open {
    max-height: 100vh;
}

.help-submenu, .lang-submenu, .user-submenu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.help-submenu.open, .lang-submenu.open, .user-submenu.open {
    max-height: 200px;
}