.jcy-collections-layout {
    min-height: 100vh;
}

.jcy-collections-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
}

.jcy-collection-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jcy-collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 1s ease;
    animation: jcyCollectionGlow 3s ease-in-out infinite;
}

@keyframes jcyCollectionGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.jcy-collection-card:hover {
    transform: translateY(-10px);
}

.jcy-collection-icon {
    transition: all 0.3s ease;
}

.jcy-collection-card:hover .jcy-collection-icon {
    transform: scale(1.15) rotate(10deg);
}

.jcy-preview-images img {
    transition: all 0.3s ease;
}

.jcy-preview-images img:hover {
    transform: scale(1.1);
}

.jcy-ranking-item {
    transition: all 0.3s ease;
}

.jcy-ranking-item:hover {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .jcy-collections-categories {
        grid-template-columns: 1fr;
    }
    
    .jcy-ranking-item {
        flex-direction: column;
        text-align: center;
    }
}