.crazygames-screenshots-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.crazygames-screenshots-row .col-4, .crazygames-screenshots-row .col-md-3 {
  display: flex;
  justify-content: center;
}
.crazygames-screenshots-row img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 16/10;
  height: auto;
  max-height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
@media (max-width: 767px) {
  .crazygames-screenshots-row img {
    max-width: 100%;
    max-height: 100px;
    aspect-ratio: 4/3;
  }
}

/* --- Logo Styles --- */
.custom-logo-link img,
.custom-logo {
  max-height: 48px;
  width: auto;
  margin-right: 3rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  display: inline-block;
}
/* --- Navbar Link Styles --- */
.navbar-nav > li > a {
  padding: 0.5rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  transition: background 0.15s, color 0.15s;
  border-radius: 0.375rem;
  margin: 0 0.2rem;
  display: inline-block;
}
.navbar-nav > li > a:hover,
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:focus {
  background: var(--accent, #FF5722);
  color: #fff !important;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .navbar-nav > li > a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    margin: 0.1rem 0;
    border-radius: 0.375rem;
    width: 100%;
    display: block;
  }
}
