body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #4C933F;
  color: white;
  box-sizing: border-box;
}

.logo {
  width: 15vw;
  margin-top: 2vw;
}

.main_button {
  cursor: pointer;
  background-color: #fff;
  color: #4C933F;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 24px;
  font-weight: 900;
}

@media only screen and (max-width: 1200px) {
  .logo {
    width: 20vw;
    margin-top: 2vw;
  }
  .main_button {
    font-size: 30px;
  }
}
@media only screen and (max-width: 990px) {
  .logo {
    width: 30vw;
    margin-top: 2vw;
  }
  .main_button {
    font-size: 38px;
  }
}

hr {
  color: #fff;
}

canvas {
  margin-top: 20px;
  border: 2px solid #fff;
}

.carousel-container {
  pointer-events: none;
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  pointer-events: auto;
}

.carousel-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #2c2c2c; /* fallback bg */
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-item.active::before {
  background: linear-gradient(90deg, #444 0%, #555 50%, #444 100%);
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #2c2c2c 0%, #3a3a3a 50%, #2c2c2c 100%);
  animation: shimmer 1.2s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: -150px 0; }
  100% { background-position: 150px 0; }
}

.carousel-item img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.carousel-item img.loaded {
  opacity: 1;
}

.carousel-item.active {
  transform: scale(1.5);
  opacity: 1;
  border: 3px solid white;
  z-index: 2;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 12px;
}

.carousel-indicators .indicator {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  opacity: 0.5;
}

.carousel-indicators .indicator:hover {
  opacity: 1;
}

.carousel-indicators .indicator.active {
  background-color: white;
  transform: scale(1.5);
  opacity: 1;
}
