.ass-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ass-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ass-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.ass-overlay h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: rgb(239 239 239);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.ass-btn {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.ass-btn:hover {
  background: #e05500;
}

.ass-prev, .ass-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 32px;
  padding: 8px 10px;
  border: none;
  display:none;
  border-radius: 50%;
  transition: background 0.3s;
}

.ass-prev:hover, .ass-next:hover {
  background: rgba(0,0,0,0.7);
}

.ass-prev { left: 15px; }
.ass-next { right: 15px; }

@media (max-width: 768px) {
  .ass-overlay h2 {
    font-size: 1.5em;
  }
  .ass-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}
