* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

header {
  background: url('images/header-bg.jpg') no-repeat center center/cover;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

header h1 {
  font-family: 'Creepster', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #e74c3c;
}

header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  text-align: center;
}

.games {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.game {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.game img {
  width: 100%;
  display: block;
}

.game-info {
  padding: 1rem;
}

.game-info h3 {
  margin-bottom: 0.5rem;
  color: #e74c3c;
}

#about {
  text-align: center;
  max-width: 700px;
}

#subscribe {
  background-color: #1a1a1a;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

#subscribe form {
  margin-top: 1rem;
}

#subscribe input[type="email"] {
  padding: 0.75rem;
  width: 60%;
  max-width: 300px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

#subscribe button {
  padding: 0.75rem 1rem;
  background-color: #e74c3c;
  border: none;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#subscribe button:hover {
  background-color: #c0392b;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .games {
    flex-direction: column;
    align-items: center;
  }

  #subscribe input[type="email"] {
    width: 80%;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  #subscribe button {
    width: 80%;
    border-radius: 4px;
  }
}