body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  overflow: hidden;
}

.image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#scopeImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.description {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
}

.button-right {
  position: absolute;
  right: 10px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.button-right button {
  background-color: rgba(80, 80, 80, 0.6);
  border: none;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-right button:hover {
  background-color: rgba(120, 120, 120, 0.8);
}

.bottom-links {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: left;
  padding-left: 10px;
}

.bottom-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
