.cardfilter26 .game-filters {
    margin: 20px 0;
    padding: 20px 0;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cardfilter26 .filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.cardfilter26 .filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.cardfilter26 .game-filters label {
    font-size: 14px;
    font-weight: 700;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cardfilter26 .game-filters select, .game-filters button {
    padding: 10px 15px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cardfilter26 .game-filters select {
    min-width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.cardfilter26 .game-filters select:focus, .game-filters button:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
.cardfilter26 .game-filters button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
}
.cardfilter26 .game-filters button:hover {
    background: #0056b3;
}
.cardfilter26 .game-filters button:active {
    background: #004085;
}
.gamecard26 .game-card.hidden {
    display: none;
}
.cardlayout26.section-wrapper:has(.top-block .gamecard26 .game-card.hidden:not(.game-card:not(.hidden))) {
    display: none;
}
.cardlayout26.section-wrapper:has(.top-block .gamecard26 .game-card:not(.hidden)) {
    display: block;
}
.cardfilter26 .platform-chips,
.cardfilter26 .type-chips  {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 600px;
}
.cardfilter26 .platform-chip,
.cardfilter26 .type-chip {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    user-select: none;
}
.cardfilter26 .platform-chip:hover,
.cardfilter26 .type-chip:hover {
    background: #e2e6ea;
}
.cardfilter26 .platform-chip.active,
.cardfilter26 .type-chip.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
@media (max-width: 600px) {
    .cardfilter26 .filter-group {
        gap: 10px;
        padding: 10px;
    }
    .cardfilter26 .game-filters select, .game-filters button {
        width: 100%;
        max-width: 200px;
    }
}