* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;

  background: radial-gradient(
    circle at top,
    #172534 0%,
    #0d151d 42%,
    #080d12 100%
  );

  color: #f2eee8;

  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  display: flex;
  justify-content: center;

  padding: 34px 20px 18px;
}

.company-logo {
  width: min(260px, 62vw);
  aspect-ratio: 1 / 1;

  object-fit: cover;
  object-position: center -10px;

  background: white;

  border-radius: 50%;
  border: 3px solid #d6d3cc;

  box-shadow:
    0 0 0 6px rgb(255 255 255 / 4%),
    0 14px 34px rgb(0 0 0 / 45%);
}

main {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h1 {
  margin: 8px 0 34px;

  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.04em;

  color: #f4efe7;
}

.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.game-card {
  overflow: hidden;

  background: #0f1821;
  border: 1px solid #31404d;
  border-radius: 14px;

  text-align: center;

  box-shadow:
    0 12px 30px rgb(0 0 0 / 35%),
    inset 0 1px 0 rgb(255 255 255 / 3%);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.game-card:hover {
  transform: translateY(-4px);

  border-color: #51687a;

  box-shadow:
    0 18px 38px rgb(0 0 0 / 45%),
    0 0 24px rgb(84 122 148 / 8%);
}

.game-image-container {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 430px;
  padding: 20px;

  background: linear-gradient(180deg, #111820 0%, #0b1015 100%);
}

.game-image-container img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.game-card h2 {
  margin: 22px 20px 6px;

  font-size: 1.7rem;
  letter-spacing: 0.02em;

  color: #f1ece4;
}

.game-description {
  max-width: 440px;
  margin: 10px auto 20px;
  padding: 0 24px;

  font-size: 0.95rem;
  line-height: 1.55;

  color: #aeb9c2;
}

.game-details {
  display: flex;
  justify-content: center;
  gap: 28px;

  margin: 0 auto 22px;
  padding: 0 20px;

  font-size: 0.9rem;
  color: #8fa0ad;
}

.game-details strong {
  color: #d5dce1;
  font-weight: 600;
}

.chill-factor {
  font-weight: 600;
}

.chill {
  color: #78c99a;
}

.mayhem {
  color: #e8785d;
}

.coming-soon {
  margin: 0 20px 26px;

  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #94a7b7;
}

footer {
  padding: 48px 20px 28px;

  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;

  color: #72808b;
}

@media (max-width: 750px) {
  .site-header {
    padding-top: 24px;
  }

  .company-logo {
    width: min(220px, 68vw);
  }

  h1 {
    margin-bottom: 26px;
  }

  .games {
    grid-template-columns: 1fr;
  }

  .game-image-container {
    height: 340px;
  }
}
