/* General Styles */
:root {
  --primary-color: #005f73;
  --accent-color: #ffc300;
  --background-color: #f7f7f7;
  --text-color: #444;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Header Styles */
header {
  background: var(--primary-color);
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--accent-color);
}

/* Section Styles */
section {
  padding: 2rem;
  background: white;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
}

section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

.game-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.game {
  text-align: center;
  width: 200px;
}

.game img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game h3 {
  margin-top: 10px;
  color: var(--primary-color);
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--accent-color);
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  margin-top: 2rem;
  font-size: 14px;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
