@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/CinzelDecorative-Regular.woff2') format('woff2'),
         url('../fonts/CinzelDecorative-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
  background: #fff;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  font-style: italic;
}

.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.game-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
}

.game-link img {
  max-width: 300px;
  border-radius: 50%;
  border: 3px solid #222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.game-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-top: 15px;
}

.scroll-hint {
  margin-top: 240px;
  font-size: 1.2rem;
  color: #555;
  animation: bounce 2.5s infinite;
  cursor: pointer;
  text-decoration: none;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}


.team-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #fff;
  flex-wrap: wrap;
}

.team-member {
  max-width: 350px;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  margin: 15px 0 5px;
}

.team-member p {
  font-size: 0.9rem;
  color: #555;
}


/* --- Your existing styles above remain unchanged --- */

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .game-link img {
    max-width: 200px;
  }

  .game-title {
    font-size: 1.5rem;
  }

  .team-member img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .scroll-hint {
    font-size: 1rem;
  }

  .team-section {
    gap: 20px;
  }

  .team-member img {
    width: 120px;
    height: 120px;
  }
}
