﻿
.category-card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: white;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.category-title {
    border-bottom: 2px solid #8b0000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #343a40;
}

.game-link {
    color: #8b0000;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 0;
    text-decoration: none;
}

    .game-link:hover {
        color: #d63384;
        transform: translateX(5px);
        text-decoration: underline;
    }



.btn-more {
    background-color: #8b0000;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

    .btn-more:hover {
        background-color: #d63384;
        transform: scale(1.05);
    }

.card-body {
    padding: 25px;
}
