/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page */
a {
  color: #f5aa53;
  font-weight: bold;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
  
  font-family: "Candara";
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  /* added settings for background */
  margin: 0;
  min-height: 100vh;

  /* fallback colors */
  background-color: #1d1b21;

  /* repeating strip
  background-image: url("images/dither-bg.png");
  background-repeat: repeat-x;
  background-position: top center;
  background-attachment: fixed; */

  color: white;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.content {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
}

.bottom-logo img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 90%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 20px;
}

/* Logo */
.logo-section {
  margin-bottom: 3em;
}

.logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.logo-title {
  font-size: 3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5aa53;
  margin-bottom: 18px;
  margin-top: 18px;
}

/* Featured image */
.featured {
  width: 100%;
  margin-bottom: 2em;
}

.featured-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 22px;
}

.featured-image {
  width: 60%;
  object-fit: cover;
  margin: auto;
  object-position: center center;
  display: block;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 1em;
  margin-bottom: 2em;
}

.icon-link img {
  width: 36px;
  height: 36px;
  display: block;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-link:hover img {
  transform: scale(1.08);
  opacity: 1;
}

/* Text */
.game-title {
  color: #a4dddb;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* Team */
.team {
  width: 100%;
}

.team h1 {
  color: #a4dddb;
  font-size: 2.0rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team h2 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.team p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3em;
}

.team-list {
  list-style: none;
}

.team-list li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    gap: 36px;
  }

  .game-title {
    font-size: 1.15rem;
  }

  .featured-text {
    font-size: 0.95rem;
  }
}