body {
    background-color: #272B30;
    font-family: 'Comic Sans MS',sans-serif;
    line-height: 1.5;
}
.loader-container {
    z-index: 9999 !important;
}
.loader {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #ffa516);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}
@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}
.backgroundImg {
    height: 30vh;
    object-fit: cover;
}
.navbar {
    background-color: #3A497B !important;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(19, 18, 18, 0.5) inset;
    margin-top: -35px;
    padding: 10px;
}
.nav-item a {
    color: white !important;
    font-size: 14px;
    transition: all 0.5s ease-in-out;

}
.nav-item a:hover {
    color: rgb(0, 153, 204) !important;

}
.nav-link.active {
    color: rgb(0, 153, 204) !important;
}
.details-container{
 padding-inline: 0!important;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.card .card-title{
    font-size: 14px !important;
    font-weight: 500;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-text {
    color: #6c757d;
    font-size: 14px;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-body .badge {
    padding: 8px;
    background-color: rgb(70, 82, 99);
    transition: all 0.5s ease-in-out;
}
.card:hover .badge {
    background-color: rgb(8, 104, 238);
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    filter: grayscale(70%) brightness(0.9);
    transition: all 0.3s ease-in-out;
}
.card:hover img {
    filter: none;
}
.card .card-footer .footer-badge {
    background-color: rgb(68, 81, 93);
    padding: 1px 5px;
    font-weight: 700;
    font-size: 10px;
}
.gameDetails span {
    padding: 3px 5px;
    font-size: 13px;
    font-weight: 700;
}