/* Skeleton Loader */
#cc-game-browser:empty::before {
    content: "Loading games library...";
    display: block;
    text-align: center;
    padding: 40px;
    color: #666;
    font-family: inherit;
}

.ccgb-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.ccgb-skeleton-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 380px;
    position: relative;
    animation: ccgb-pulse 1.5s infinite ease-in-out;
}

.ccgb-skeleton-image {
    height: 200px;
    background: #eee;
}

.ccgb-skeleton-content {
    padding: 15px;
}

.ccgb-skeleton-line {
    height: 12px;
    background: #eee;
    margin-bottom: 10px;
    border-radius: 4px;
}

.ccgb-skeleton-line.short {
    width: 60%;
}

@keyframes ccgb-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}
