/* 
   Arcade Boom! - Стили для страницы игр
   Стиль: пиксель-арт, 8-бит, ретро (NES/Sega)
*/

/* Фильтры */
.qwe34 {
    margin-bottom: 40px;
}

.asd56 {
    margin-bottom: 20px;
}

.zxc45 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vbn23 {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
    font-family: 'PixelFont', 'Courier New', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vbn23:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.vbn23.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.plm44 {
    margin-top: 30px;
    text-align: center;
}

.add-game {
    font-size: 1.1rem;
    padding: 12px 25px;
}

/* Сетка игр */
.asd23 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.fgh45 {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    padding: 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.fgh45:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.jkl67 {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 2px solid var(--dark-color);
    margin-bottom: 15px;
}

.qwe12 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.zxc34 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    min-height: 40px;
}

.cvb45 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nmb23 {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Анимации для карточек игр */
.fgh45 {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Эффект "нажатия" для кнопок */
.bnm67 {
    position: relative;
    transition: all 0.1s ease;
}

.bnm67:active {
    transform: translateY(4px);
}

/* Медиа запросы */
@media (max-width: 768px) {
    .zxc45 {
        flex-direction: row;
    }
    
    .vbn23 {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .asd23 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .asd23 {
        grid-template-columns: 1fr;
    }
    
    .zxc45 {
        flex-direction: column;
        align-items: center;
    }
    
    .vbn23 {
        width: 100%;
        max-width: 250px;
    }
} 