@font-face {
  font-family: "ARI_w9500";
  src: url("ari-w9500.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ARI_w9500";
  src: url("ari-w9500-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "ARI_w9500", monospace, sans-serif;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-image: url("image.png");
  background-size: cover;
  background-position: center;

  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}

.hero-title {
  color: #000000;
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.hero-logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #000000;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.hero-subtitle .highlight-text {
  color: #dca326;
}

.content-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  position: relative;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.project-section {
  margin-bottom: 50px;
}

.title {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.star-icon {
  width: 40px;
  height: auto;
}

.description {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto;
}

.team-section {
  margin-top: 20px;
}

.subtitle {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 30px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.avatar {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.team-member h3 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 5px;
}

.team-member .role {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.3;
}

.footer-section {
  background-color: white;
  color: 7A7272;
  text-align: center;
  width: 100%;
  padding: 30px 40px;
  box-sizing: border-box;
  border-top: 4px solid #5a3a9c;
}

.footer-section p {
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  color: #7a7171;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.8rem;
  }
  .hero-logo {
    width: 180px;
  }

  .title {
    font-size: 2.2rem;
  }
  .star-icon {
    width: 25px;
  }
  .description {
    font-size: 1.2rem;
  }

  .team-grid {
    gap: 30px;
  }
}
