body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  color: white;
  background-color: black;
}

.content {
  position: relative;
  color: white;
  text-align: left;
  top: 40%;
  transform: translateY(-50%);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

a {
  cursor: pointer;
  color: white;
  text-decoration: underline;
  font-size: 16px;
}

#galleryModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  text-align: left;
  padding-top: 60px;
  overflow: hidden;
}

.media-container {
  max-width: 80%;
  max-height: 70vh;
  margin: 0 auto;
  position: relative;
}

.media-container img,
.media-container video {
  max-width: 100%;
  max-height: 70vh;
  border: 2px solid white;
  border-radius: 8px;
}

.description {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.4;
  color: #ccc;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 10px;
  user-select: none;
}

.left-arrow { left: 0; }
.right-arrow { right: 0; }

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: white;
}
