/* static/css/no_games.css */

.no-games-page {
  position: relative;
  min-height: 100vh;
  padding: 28px 18px;
}

/* Bakgrundsbild */
.no-games-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/static/img/live_thl-bg.png") center / cover no-repeat;
  opacity: 0.75;
  z-index: -2;
  pointer-events: none;
}

/* Vit overlay för läsbarhet */
.no-games-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.50);
  z-index: -1;
  pointer-events: none;
}

/* Innehåll ovanpå */
.no-games-page > * {
  position: relative;
  z-index: 2;
}

/* Själva infoboxen */
.no-games-card {
  max-width: 550px;
  margin: 80px auto 0;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.12);
}

.no-games-card h1,
.no-games-card h2 {
  font-family: "EurostileExtended", Arial, sans-serif;
  letter-spacing: .6px;
}

.no-games-card .next {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.no-games-card .muted {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
}