body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin-left: 3%;
  margin-right: 3%;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 3%;
  height: 50px;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.company-name {
  font-size: 20px;
  margin-left: 10px;
}

.menu a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 80px 0 40px; /* 80px top to account for fixed header */
}

.home .large-logo {
  display: block;
  margin: 0 auto;
  width: 66%;
  height: auto;
}

.home .description {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

.games h2,
.technologies h2,
.careers h2,
.contact h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;  
}

.game-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 40px;
  justify-items: center;
}

.game-cell {
  text-align: center;
}

.screenshot {
  width: 850px;
  height: auto;
  margin-bottom: 10px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.icon {
  width: 300px;
  height: 100px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
}

.tech-cell {
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.tech-cell img {
  width: 100px;
  height: auto;
}

.careers p {
  text-align: center;
  font-size: 16px;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 3%;
}

.footer-left {
  font-size: 14px;
}

.footer-right a img {
  height: 24px;
  margin-left: 10px;
}

.tooltip[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  z-index: 1001;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}