/* Site-wide styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Game card hover effect */
.game-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.game-card .card-img-top {
    width: 100%;
    height: auto;
    display: block;
}

.game-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    min-height: 2.4em;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card .card-body {
    padding: 1rem;
}

/* Filter controls */
.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Modal styles */
.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.game-detail-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Loading spinner */
.spinner-border {
    color: #107c10;
}

/* Stats text */
.text-muted {
    color: #6c757d !important;
}

/* Footer */
footer {
    border-top: 1px solid #dee2e6;
    margin-top: 3rem;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pagination .page-link {
    color: #107c10;
}

.pagination .page-item.active .page-link {
    background-color: #107c10;
    border-color: #107c10;
}

.pagination .page-link:hover {
    color: #0c5c0c;
}
