.hero-gradient {
    background: linear-gradient(135deg, #DA4B80 0%, #F78FB3 50%, #c0398b 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 75, 128, 0.2);
}

.features-desc {
    font-size: 18px;
    letter-spacing: 0.3px;
}

.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(218, 75, 128, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DA4B80;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active-nav::after {
    width: 100%;
}

.lang-active {
    background-color: #f0f0f0;
    font-weight: bold;
    border: 2px solid #DA4B80;
}

.am-hero-title {
    font-size: 56px;
}

.am-hero-subtitle {
    font-size: 28px;
}

.am-mac-download {
    font-size: 20px;
}

.am-windows-download {
    font-size: 20px;
}

.am-features-title {
    font-size: 40px;
}

.am-features-desc {
    font-size: 20px;
    letter-spacing: 0.3px;
}

.am-feature1-title {
    font-size: 24px;
}

.am-feature1-desc {
    font-size: 20px;
}