.csb-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.csb-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

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

.csb-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
}

.csb-content h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.csb-content a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.csb-content a:hover {
  background: #ddd;
}
