.customContainerColor {
  background: linear-gradient(135deg, #2a2a2a, #4a1310, #731a15); /* charcoal → brick → deep red accent */
  border-bottom: 0.25vw solid #3d0f0c;
  border-top: 0.25vw solid #731a15;
}
.customBackgroundColor {
  background: linear-gradient(-45deg,
    #0a0a0a 0%,      /* near-black */
    #141414 15%,     /* deep charcoal */
    #1f0d0d 30%,     /* dark red-brown shadow */
    #2a1210 45%,     /* muted brick */
    #5c1712 60%,     /* dark antique red highlight */
    #1f0d0d 75%,     /* return to red-brown shadow */
    #141414 90%,     /* deep charcoal again */
    #0a0a0a 100%     /* near-black end */
  );
  background-size: 300% 300%;
  animation: browseGamesDrift 25s ease infinite;
}
.browseGames-headlines {
  color: #ff6b57; /* bright coral-red headlines */
}
a.browseGames:link,
a.browseGames:visited {
  color: #ff6b57; /* same coral-red as headlines */
}
a.browseGames:hover {
  color: #ff8f7f; /* brighter coral-red for hover */
}
@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 #3d0f0c !important;
	  border-top: 4px solid #731a15 !important;
	}
}