.customContainerColor {
  background: linear-gradient(135deg, #2a2a2a, #4a4a48, #6e6d68); /* charcoal → steel grey → silver accent */
  border-bottom: 0.25vw solid #38372f;
  border-top: 0.25vw solid #6e6d68;
}
.customBackgroundColor {
  background: linear-gradient(-45deg,
    #0a0a0a 0%,      /* near-black */
    #141414 15%,     /* deep charcoal */
    #1c1c19 30%,     /* dark steel shadow */
    #26261f 45%,     /* muted silver-olive */
    #4a4a3f 60%,     /* dark antique silver highlight */
    #26261f 75%,     /* return to silver-olive shadow */
    #141414 90%,     /* deep charcoal again */
    #0a0a0a 100%     /* near-black end */
  );
  background-size: 300% 300%;
  animation: browseGamesDrift 25s ease infinite;
}
.browseGames-headlines {
  color: #FCEA2B; /* logo yellow headlines, popping against the silver */
}
a.browseGames:link,
a.browseGames:visited {
  color: #D0CFCE; /* logo silver — dominant tone for body links */
}
a.browseGames:hover {
  color: #FCEA2B; /* shift to yellow on hover for contrast */
}
@keyframes browseGamesDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* ===========================
   TABLET (768px and up)
   iPad, larger tablets, small laptops
   =========================== */
@media (min-width: 768px) {
	.customContainerColor {
	  border-bottom: 1px solid #38372f !important;
	  border-top: 4px solid #6e6d68 !important;
	}
}