/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #f9f9f9;
  text-align: center;
}

a {
  text-decoration: none;
}

/* Header */
header {
  background: linear-gradient(90deg, #ffcc33, #ff9900);
  color: #0a0a0a;
  padding: 60px 20px;
  color: #0a0a0a;
}
header img {
  transition: transform 0.3s;
}

header img:hover {
  transform: scale(1.1);
}
header h1 {
  font-size: 3em;
  margin: 10px 0;
}

header p {
  font-size: 1.2em;
}

/* Sections */
section {
  padding: 50px 20px;
}

h2 {
  color: #ffcc33;
  margin-bottom: 30px;
}

/* Game Cards */
#games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.game {
  background: #1a1a1a;
  border: 2px solid #ffcc33;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  transition: transform 0.3s;
}

.game:hover {
  transform: scale(1.05);
}

.game img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.game a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #ffcc33;
  border: 1px solid #ffcc33;
  transition: 0.3s;
}

.game a:hover {
  background: #ffcc33;
  color: #0a0a0a;
}

/* Footer */
footer {
  background: #0a0a0a;
  color: #777;
  padding: 20px;
  margin-top: 50px;
}
#visitor-counter {
  color: #ffcc33;
  font-size: 0.9em;
}

#visitor-counter a {
  color: #ffcc33;
  text-decoration: none;
}

#visitor-counter a:hover {
  text-decoration: underline;
}
/* Responsive */
@media(max-width: 650px){
  #games {
    flex-direction: column;
    align-items: center;
  }
}
