/* Default Collection Cover Styles */
.default-collection-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.default-collection-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.default-collection-cover .music-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.default-collection-cover .cover-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.default-collection-cover .decorative-notes {
    position: absolute;
    color: rgba(255,255,255,0.2);
    font-size: 1.2rem;
    pointer-events: none;
}

.default-collection-cover .note1 { top: 15%; left: 15%; }
.default-collection-cover .note2 { top: 20%; right: 20%; }
.default-collection-cover .note3 { bottom: 25%; left: 20%; }
.default-collection-cover .note4 { bottom: 15%; right: 15%; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .default-collection-cover .music-icon {
        font-size: 3rem;
    }
    
    .default-collection-cover .cover-text {
        font-size: 0.9rem;
    }
    
    .default-collection-cover .decorative-notes {
        font-size: 1rem;
    }
}

/* Animation for hover effect */
.default-collection-cover:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.default-collection-cover:hover .music-icon {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
