       body {
            font-family: sans-serif;
            background-color: #000000;
            margin: 20px;
        }
        .mod-list-container {
            background-color: black;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: auto;
        }
        ul {
            list-style-type: none; /* Removes default bullet points */
            padding: 0;
        }
        li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        li:last-child {
            border-bottom: none; /* Removes the border from the last item */
        }
        .mod-name {
            font-weight: bold;
            color: #FFFFFF;
            font-size: larger;
        }
        .mod-description {
            color: #C0C0C0;
            margin-top: 5px;
            margin-bottom: 5px;
            flex-wrap: wrap;
        }
        .mod-link a {
            color: #FFFFFF;
            text-decoration: none;
        }
         .mod-link {
            color: #FFFFFF;
            text-decoration: none;
        }
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 50px;
}

.image-card {
  border: 4px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
  border-radius: 8px;
  overflow: hidden;
}

/* Visually highlight the image selected by the gamepad */
.image-card.active {
  border-color: #007acc;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,122,204,0.3);
}

.image-card img {
  width: 200px;
  height: 150px;
  display: block;
  object-fit: cover;
}