/* Reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Background */
body {
  min-height: 100vh;
  font-family: Verdana, Arial, sans-serif;

  background-image: url("../../images/superbad.png");
  background-repeat: repeat;

  animation: bg-scroll 40s linear infinite;
}

@keyframes bg-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 512px; }
}

/* Main container */
.games-box {
  max-width: 1000px;
  margin: 60px auto;
  padding: 30px;

  background-color: rgb(255, 255, 255);

  border: 4px solid #444;
  box-shadow: 0 0 0 2px #999;
}

/* Header image */
.games-header-image {
  text-align: center;
  margin-bottom: 25px;
}

.games-header-image img {
  max-width: 100%;
  height: auto;
}

/* Page title */
.page-title {
  text-align: center;
  font-size: 2.4em;
  margin-top: 0;
  margin-bottom: 8px;
}

/* Subtitle */
.page-subtitle {
  text-align: center;
  font-size: 0.95em;
  color: #555;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Links under subtitle */
.page-links {
  text-align: center;
  font-size: 0.9em;
  color: #333;
  margin-top: 0;
  margin-bottom: 40px;
}

/* Game entry */
.game-entry {
  display: flex;
  gap: 25px;
  padding: 20px;
  margin-bottom: 30px;

  border: 3px solid #444;
  background-color: #f5f5f5;
}

/* Left text */
.game-info {
  flex: 2;
}

.game-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.game-desc {
  margin: 0;
  color: #333;
  line-height: 1.4;
}

/* Right image */
.game-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-image img {
  max-width: 100%;
  height: auto;
  cursor: pointer;

  border: 3px solid #444;
  background-color: #ddd;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.game-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Return Home */
.return-home {
  text-align: center;
  margin-top: 40px;
}

.return-home a {
  display: inline-block;
  padding: 12px 28px;

  background-color: #444;
  color: white;
  font-weight: bold;
  text-decoration: none;

  border: 3px solid #222;
}

.return-home a:hover {
  background-color: #666;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;

  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;

  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 90vh;

  border: 4px solid #444;
  background-color: black;
}
