.customContainerColor {
  background: linear-gradient(135deg, #2a2a2a, #4a4310, #736c15); /* charcoal → dark gold → deep amber accent */
  border-bottom: 0.25vw solid #3d3708;
  border-top: 0.25vw solid #736c15;
}
.customBackgroundColor {
  background: linear-gradient(-45deg,
    #0a0a0a 0%,      /* near-black */
    #141414 15%,     /* deep charcoal */
    #1f1c0d 30%,     /* dark gold-brown shadow */
    #2a2610 45%,     /* muted amber */
    #5c5312 60%,     /* dark antique gold highlight */
    #1f1c0d 75%,     /* return to gold-brown shadow */
    #141414 90%,     /* deep charcoal again */
    #0a0a0a 100%     /* near-black end */
  );
  background-size: 300% 300%;
  animation: browseGamesDrift 25s ease infinite;
}
.browseGames-headlines {
  color: #FAEA2C; /* logo yellow headlines */
}
a.browseGames:link,
a.browseGames:visited {
  color: #FAEA2C; /* same logo yellow as headlines */
}
a.browseGames:hover {
  color: #FCF176; /* brighter, lighter yellow 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 #3d3708 !important;
	  border-top: 4px solid #736c15 !important;
	}
}