/* General Page Styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  text-decoration: none;
}

/* Top Banner */
.banner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
}

/* Top Navigation Buttons */
.top-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px auto;
  max-width: 1920px;
}

.top-buttons a img {
  max-width: 140px;
  height: auto;
  transition: transform 0.2s ease;
}

.top-buttons a img:hover {
  transform: scale(1.03);
}

/* Main Container */
.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1920px;
  margin: 0 auto;
  background: url('../../graphics/space.jpg') center top no-repeat;
  background-size: cover;
  padding: 8px;
  box-sizing: border-box;
}

/* Show Listings */
.show-list {
  flex: 1 1 1600px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 10px;
}

/* Narrow show-list on desktop by 50px and center */
@media (min-width: 769px) {
  .container {
    justify-content: center; /* centers show-list as a group */
  }

  .show-list {
    flex: 0 0 1420px; /* fixed width */
  }
}

.show {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #333;
  padding: 2px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.show-info {
  flex: 1 1 70%;
  font-size: 0.83rem;
  color: #fff;
  word-wrap: break-word;
}

.show-info .title {
  color: #ffff00;
  font-weight: bold;
}

.show-info .date {
  color: #fff;
}

/* Show Icon Links */
.show-links {
  display: flex;
  flex: 1 1 30%;
  justify-content: flex-end;
  gap: 25px;
}

.show-links a img {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.show-links a:hover img {
  transform: scale(1.2);
  filter: brightness(1.4);
  opacity: 0.9;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    justify-content: flex-start;
  }

  .show {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-links {
    justify-content: flex-start;
    margin-top: 4px;
    gap: 30px;
  }
}
