body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: #007bff;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.site-header, .site-footer {
  background-color: #e42621;
  color: white;
  padding: 1rem 0;
}

.site-header h1 a, .site-header nav a {
  color: white;
  margin-right: 1rem;
}

.site-navigation {
  background-color: transparent;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 50px;
}

.site-footer {
  background-color: transparent;
  text-align: center;
  margin-top: 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
}

.hero-window {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom right, #e42621, #A41B17);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-window h1 {
  font-size: 3rem;
}

.hero-window p {
  font-size: 1.25rem;
  opacity: 0.8;
}

.hero-top-bar {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: top;
  z-index: 10;
}

.logo img {
  width: 150px;
  height: auto;
}

.social-links {
  display: inline-flex;
  align-items: top;
}

.social-links a {
  margin-left: 2rem;
}

.social-links img {
  height: 35px;
  width: 35px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.social-links a:hover img {
  opacity: 0.75;
}

.game-banner {
  display: flex;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 200px;
  align-items: center;
}

.game-banner img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.game-banner-content {
  padding: 1rem;
  flex-grow: 1;
}

.game-banner-content h2 {
  margin-top: 0;
}

.game-banner-content p {
  margin: 0.5rem 0;
}

.game-banner-content a.button {
  display: inline-block;
  padding: 1rem 1rem;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background-color: var(--tag-color, #888);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .hero-window h1 {
    font-size: 2.2rem;
  }
  .hero-window p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: 98%;
    max-width: 100%;
    padding: 0 1rem;
  }
  .game-banner {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .game-banner img {
    width: 100%;
    max-width: 320px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    margin: 0;
  }
  .game-banner-content {
    padding: 1rem 0.5rem;
    text-align: center;
  }
  .site-header h1, .site-header nav {
    text-align: center;
    display: block;
    margin: 0.5rem 0;
  }
}

@media (max-width: 600px) {
  .hero-window {
    flex-direction: column;
  }
  .hero-window h1 {
    font-size: 1.3rem;
  }
  .hero-window p {
    font-size: 0.95rem;
  }
  .hero-top-bar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    position: static;
  }
  .logo img {
    width: 100px;
    margin-bottom: 0.5rem;
  }
  .social-links {
    margin-top: 0.5rem;
  }
  .social-links a {
  margin: 0.5rem;
}
  .social-links img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .site-header, .site-footer {
    padding: 0.5rem 0;
  }
  .game-banner-content h2 {
    font-size: 1.2rem;
  }
  .game-banner-content p {
    font-size: 0.95rem;
  }
  .game-banner-content a.button {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
  }
}
