body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.headerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
}

.container a {
  max-height: 300px;
}

header img {
  width: clamp(400px, 55vw, 550px);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

header>p {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 10px;
  margin-top: 0px;
}

hr {
  border: none;
  border-top: 2px solid #ccc;
  margin-left: 80px;
  margin-right: 80px;
  padding: 10px;
}

footer {
  text-align: center;
  margin-top: 1rem;
  color: black;
}

footer>p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 2rem);
}

.social-links {
  margin: 5px;
  margin-bottom: 0;
}

.social-links a {
  color: black;
  font-size: clamp(0.25rem, 2.5vw, 3rem);
  margin: 0 0.50rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #555;
}

.pp {
  font-size: clamp(0.9rem, 2vw, 2rem);
  color: #000;
}

.note {
  color: gray;
  text-align: center;
  margin: 0;
  font-size: clamp(0.75rem, 1.5vw, 1.5rem);
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: block;
  border: 2px solid black;
  cursor: pointer;
}

.item img {
  width: 100%;
  height: 100%;
  display: block;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-content {
  padding: 15px;
  text-align: center;
}

.item-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1rem, 2vw, 2rem);
  color: #333;
}

.item-content p {
  margin: 0;
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  color: #666;
}

.eye-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20%;
  transform: translate(-50%, -50%);
}

.eye-socket {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), inset 0 8px 8px rgba(0, 0, 0, 0.5);
}

.iris {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  background: radial-gradient(circle at 40% 40%, #00ff00, #004d00);
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.3);
}

.pupil {
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 40% 40%, #444, #000);
}

.pupil::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

#eye-text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 10px;
  left: 250px;
  color: black;
  border-radius: 5%;
  border: 1px solid black;
  background: white;
  padding: 5px;
}

#eye-text.visible {
  opacity: 1;
}

.contribute-trigger {
  background: #ff4757;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin: 15px 0;
  transition: transform 0.2s;
}

.contribute-trigger:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #1a1a1a;
  color: white;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #444;
  width: 80%;
  max-width: 500px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}

.modal-link-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #2ed573;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  hr {
    margin-left: 40px;
    margin-right: 40px;
    padding: 5px;
  }
  
  header>p {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  footer>p,
  .pp,
  .note {
    font-size: clamp(0.8rem, 3vw, 1.2rem);
  }
  
  .social-links a {
    font-size: 1rem;
  }
  
  .container {
    grid-template-columns: 1fr;
  }
  
  .eye-container {
    top: 20%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
  
  .eye-socket {
    width: 30px;
    height: 30px;
  }
  
  .iris {
    width: 15px;
    height: 15px;
  }
  
  .pupil {
    width: 7px;
    height: 7px;
  }
  
  #eye-text {
    font-size: 1rem;
    top: -5px;
  }
}