
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: transparent;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: #fff;
  text-align: center;
}

.title {
  font-size: 3em;
  margin: 20px 0;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide {
  max-width: 90%;
  max-height: 80vh;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 3em;
  color: red;
  user-select: none;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  padding: 0 15px;
  border-radius: 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.caption {
  margin-top: 20px;
  font-size: 1.2em;
  color: #ccc;
}

.blog-link {
  margin-top: 40px;
  font-size: 2em;
  color: red;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .prev, .next {
    font-size: 2em;
    padding: 5px;
  }

  .slide {
    max-width: 100%;
    max-height: 70vh;
  }

  .title {
    font-size: 2em;
  }
}
