* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/bg.jpg') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.6);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.logo {
  width: 350px;
  max-width: 80%;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.4rem;
  color: #ddd;
  margin-bottom: 30px;
}

.coming-soon-image {
  width: 220px;
  max-width: 100%;
  margin-bottom: 30px;
}

.steam-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border: none;
  background: none;
  transition: color 0.3s;
}

.steam-button i {
  font-size: 1.2rem;
}

.steam-button:hover {
  color: #ff3e3e;
}


/* Description Section */
.description {
  padding: 60px 20px;
  background-color: #181818;
  text-align: left;
  
  margin: 0 auto;
  color: #ccc;
  font-size: 1rem;
}

.text-block p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #ccc;
}

.line-1 { padding-left: 120px; }
.line-2 { padding-left: 130px; }
.line-3 { padding-left: 140px; }
.line-4 { padding-left: 150px; }

.images {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
}

.images img {
  width: 200px;
  max-width: 100%;
  border-radius: 10px;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #101010;
  color: #888;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    width: 120px;
  }

  .coming-soon-image {
    width: 220px;
  }

  .steam-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .images img {
    width: 100%;
    max-width: 300px;
  }
}
