/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('img/bg.gif');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-blend-mode: multiply;
  font-family: 'Courier New', Courier, monospace;
  color: #000;
  background-color: #ffbadf;
}

a:link, a:visited, a:active, a:hover {
  color: #0000ff;
}

/* Sections */
section {
  margin: 2rem auto;
  max-width: 900px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title section */
.title-section {
  text-align: center;
}

.title-section img.title {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.credits {
  margin-bottom: 1rem;
  line-height: 2;
  background-color: #fff;
  display: inline-block;
  padding: 1rem;
}

.dates {
  margin-bottom: 1rem;
  line-height: 2;
  background-color: #fff;
  display: inline-block;
  padding: 1rem;
}

/* Cast section */
.cast-section h2 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #fff;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.cast-member img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.cast-member p {
  font-size: 0.85rem;
  line-height: 1.5;
  background-color: #fff;
}

.swing {
  margin-top: 1.5rem;
  text-align: center;
  color: #000;
  background-color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}
