/* Истакната картичка (Донација) */
.featured-card {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1), rgba(124, 82, 149, 0.1)) !important;
    border: 2px solid #3182ce !important; /* Примарна сина боја */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(49, 130, 206, 0.3);
    transform: scale(1.02); /* Малку поголема од другите */
}

.featured-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(49, 130, 206, 0.5);
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.2), rgba(124, 82, 149, 0.2)) !important;
}

/* Специјална боја за иконата во истакнатата картичка */
.featured-card .icon {
    color: #3182ce !important;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Темна тема фикс */
.dark .featured-card {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(159, 122, 234, 0.15)) !important;
    border-color: #63b3ed !important;
}
