.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gender-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-card:hover {
    transform: translateY(-8px);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gender-card:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: scale(1.1);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gender-card:hover .text-gradient {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gender-card:hover .card {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.8rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .card-body {
        padding: 1.5rem 1rem !important;
    }
}
