@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  opacity: 0.85;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.game {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.game:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.game a:hover {
  color: #ffd700;
}

.game p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.25);
  margin-top: auto;
  color: #ddd;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-top: 12px;
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.1);
}
