.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.list-style {
  list-style: none;
}

.top-slots li {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  border-left: 3px solid rgb(61, 30, 110);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: rgb(32, 32, 32);
}

.page-section__quote {
  display: block;
  width: fit-content;
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.link {
  color: var(--secondary-color);
  font-style: italic;
}

.link::after {
  content: " →";
  color: var(--secondary-color);
}

.main {
  background-color: var(--content-color);
  border-radius: 25px 25px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

  margin-top: 7rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__title {
  margin-bottom: 5rem;
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero__img img {
  max-width: 100vw;
  height: 40vh;

  animation: pulse-scale 3s ease-in-out infinite;
  will-change: transform;
}

.hero__text {
  padding: 1rem;
  text-align: center;
}

.page-ending__title {
  text-align: center;
  font-size: var(--font-size-xxl);
}

.page-ending__text p {
  text-align: center;
}

.banner {
  display: flex;
  flex-direction: row;
}

.banner__img img {
  max-width: 30vw;
}

.banner-inner {
  background-image: url(/images/login-banner.webp);
  background-repeat: no-repeat;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease;
}

@media (max-width: 800px) {
  .hero__img img {
    max-width: 70vw;
    height: auto;

    animation: pulse-scale 3s ease-in-out infinite;
    will-change: transform;
  }

  section {
    padding: 1rem;
  }

  section p {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 500px) {
  .banner {
    flex-direction: column-reverse;
    align-items: center;
  }

  .banner__img img {
    max-width: 60vw;
  }
}

@media (max-width: 375px) {
  section {
    padding: 0.5rem;
  }
}
