/* ========================================= */
/* HERBRUIKBARE COMPONENTEN                  */
/* ========================================= */

/* GAME TAGS */
.game-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-right: 5px;
    vertical-align: middle;
    width: fit-content;
}

.tag-Pokemon { background-color: #ffcc00; color: #333; } 
.tag-YuGiOh { background-color: #9b59b6; } 
.tag-Disney { background-color: #3498db; } 
.tag-Magic { background-color: #27ae60; } 
.tag-OnePiece { background-color: #e74c3c; } 
.tag-General { background-color: #95a5a6; } 

.tag-normal {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 700;
    border: 1px solid #dee2e6;
}

.tag-special {
    background-color: #e0e0e0;
    color: #555555;
}

.tag-foil-animated {
    background: linear-gradient(110deg, #d8e2ff, #f8f9fa, #f0e8f8, #e8f8f8, #d8e2ff, #f8f9fa);
    background-size: 300% 300%;
    animation: foil-animation 3s ease-in-out infinite;
    color: #343a40;
    font-weight: 800;
    border: 1px solid rgba(0,0,0,0.1);
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

@keyframes foil-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* MOBIEL TAG AANPASSINGEN */
@media (max-width: 768px) {
    .game-tag {
        font-size: 0.6rem;
        padding: 1px 6px;
    }
}

/* FILTER BUTTONS */
.filter-container {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; justify-content: flex-start;
}
.filter-btn {
    padding: 8px 16px; border: 1px solid #ccc; background: white; border-radius: 20px;
    font-size: 0.9rem; font-weight: bold; cursor: pointer; color: #555; transition: 0.2s;
}
.filter-btn:hover { border-color: #333; color: #333; }
.filter-btn.active { background: #111; color: white; border-color: #111; }
