.interface-slider-wrapper {
  display: flex;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.interface-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  background: #f5f5f5;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn.active {
  background: #007bff;
  color: white;
}

.interface-display {
  flex-grow: 1;
  position: relative;
  min-height: 600px;
}

.interface-screen {
  display: none;
  position: relative;
}

.interface-screen.active {
  display: block;
}

.interface-screen img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.feature-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-point {
  position: absolute;
  z-index: 2;
}

.point-dot {
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  animation: pulse 2s infinite;
}

.feature-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Sol taraftaki noktalar için tooltip sağa doğru açılsın */
.feature-point[style*="left: 15%"] .feature-tooltip {
  left: 100%;
  transform: translateX(0);
}

/* Sağ taraftaki noktalar için tooltip sola doğru açılsın */
.feature-point[style*="left: 60%"] .feature-tooltip {
  left: auto;
  right: 100%;
  transform: translateX(0);
}

/* Alt taraftaki noktalar için tooltip yukarı doğru açılsın */
.feature-point[style*="top: 65%"] .feature-tooltip,
.feature-point[style*="top: 85%"] .feature-tooltip {
  top: auto;
  bottom: 100%;
}

.feature-point:hover .feature-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Masaüstü görünümü */
@media (min-width: 769px) {
  .mobile-features {
    display: none;
  }
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .interface-slider-wrapper {
    display: none;
  }

  .mobile-features {
    display: block;
  }

  .feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .feature-icon i {
    font-size: 24px;
    color: #007bff;
  }
}
