.ark-moments-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 20px;
  font-family: "Arial", sans-serif;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: -1px;
}

.nav-controls {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #666;
}

.nav-btn:hover {
  border-color: #6366f1;
  color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
  padding: 20px;
}

.moment-card {
  flex: 0 0 auto;
  width: 350px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.moment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moment-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
  position: relative;
  color: #fff;
}

.card-date {
  font-size: 0.9rem;
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.9),
    rgba(168, 85, 247, 0.9)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.moment-card:hover .card-overlay {
  opacity: 1;
}

.progress-bar {
  margin-top: 40px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
  transition: width 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ark-moments-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .moment-card {
    width: 280px;
  }

  .slider-track {
    gap: 20px;
    padding: 15px;
  }

  .card-content {
    padding: 25px;
  }

  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .moment-card {
    width: 250px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .card-content {
    padding: 20px;
  }
}

/* Touch indicators for mobile */
@media (max-width: 768px) {
  .slider-container::after {
    content: "Swipe to explore →";
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0.8;
  }
}
