/* ═══════════════════════════════════════════
   IGNITE ADSOLUTION — COMPONENTS.CSS (PREMIUM)
   No animations. No opacity:0. Everything visible.
   Enhanced slider & interactive component styles.
═══════════════════════════════════════════ */

/* ── IMAGE SLIDER ── */
.ss-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(6,14,29,0.5);
}
.ss-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ss-track img {
  min-width: 100%;
  width: 100%;
  border-radius: 10px;
  display: block;
}
.ss-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.ss-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(43,143,232,0.25);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.ss-dot.active {
  background: #2B8FE8;
  width: 18px;
  border-radius: 3px;
}
.ss-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 10px;
  box-sizing: border-box;
}
.ss-arr {
  pointer-events: all;
  background: rgba(6,14,29,0.8);
  border: 1px solid rgba(43,143,232,0.3);
  color: #2B8FE8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(8px);
}
.ss-arr:hover {
  background: rgba(43,143,232,0.25);
  transform: scale(1.1);
}