.navbar img{
    height: 75px;
}
.navbar a{
    color: #FFF;
}
.containercard{
    padding-inline: 10px;
}
.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.loader{
      font-size: 48px;
      color: #FFF;
      display: inline-block;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      position: relative;
    }
    .loader:after{
      content: 'Loading';
      position: relative;
      z-index: 5;
    }
    .loader:before{
      content: '';
      height: 6px;
      border: 1px solid;
      border-radius: 10px;
      width: 100%;
      position: absolute;
      bottom: 0px;
      background: linear-gradient(#FF3D00 100%, transparent 0) no-repeat;
      background-size: 0% auto;
      animation: 10s lineGrow linear infinite;
    }

    @keyframes lineGrow {to {  background-size: 100% auto}}
#loading {
    background-color: #272b30;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.nav-link.active {
    color: #0d6efd !important;
    font-weight: bold;
}
#details h3 {
    font-family: 'Comfortaa', cursive;
}
#system-requirements ul li {
    margin-bottom: 8px;
    color: #ced4da;
}
.details-content h3 {
    font-weight: 700;
    color: #fff;
}
#system-requirements ul li strong {
    color: #ffc107;
    margin-right: 5px;
}
.btn-close {
    filter: invert(1);
}
#searchInput {
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}
#searchInput:focus {
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
    border-color: #0d6efd;
    outline: none;
}
#searchInput::placeholder {
    color: #6c757d;
}
.card:hover {
    transform: scale(1.03);
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: #0d6efd !important;
}
#details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    background-color: #272b30;
    overflow-y: auto;
    min-height: 100vh;
}
.cards {
    min-height: 100vh;
    padding-top: 100px;
    padding-inline:  200px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../imges/360_F_323880864_TPsH5ropjEBo1ViILJmcFHJqsBzorxUB.jpg');
    background-color: #272b30;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../imges/360_F_323880864_TPsH5ropjEBo1ViILJmcFHJqsBzorxUB.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.cards h3 {
    text-align: center;
    padding: 40px 0;
    color: #FFF;
}
@media (max-width: 767.98px) {
    .cards {
        padding-inline: 15px;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar img {
        height: 50px;
    }
    #details .header-text h1 {
        font-size: 1.5rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cards {
        padding-inline: 50px;
    }
}
#details img {
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}
.card {
    cursor: pointer;
    transition: transform 0.3s;
    height: 100%;
}
.card-img-top {
    height: 180px;
    object-fit: cover;
}
.gallery-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.gallery-img:hover {
    transform: scale(1.05);
}
@media (max-width: 767.98px) {
    .container.d-flex {
        flex-direction: column;
    }
    .w-50, .w-25 {
        width: 100% !important;
        margin-bottom: 10px;
    }
}
.gallery-img {
    height: 250px;
    object-fit: cover;
    border: 1px solid #444;
    transition: transform 0.3s ease-in-out;
}
.gallery-img:hover {
    transform: scale(1.02);
    border-color: #ffc107;
}