/* App Screenshots Section Styling */
.app-screenshots {
  padding: 100px 0;
  background: #f9f9f9;
  overflow: hidden;
}

.screenshots-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.screenshot-item {
  width: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  transform: perspective(1000px) rotateY(5deg);
}

.screenshot-item:nth-child(2) {
  z-index: 2;
  transform: scale(1.05) perspective(1000px) rotateY(0);
}

.screenshot-item:nth-child(1) {
  transform: perspective(1000px) rotateY(-5deg);
}

.screenshot-item:hover {
  transform: perspective(1000px) rotateY(0) translateY(-10px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

@media (max-width: 992px) {
  .screenshots-slider {
    gap: 15px;
  }
  
  .screenshot-item {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .screenshots-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .screenshot-item {
    width: 280px;
    margin-bottom: 30px;
    transform: none !important;
  }
  
  .screenshot-item:hover {
    transform: translateY(-10px) !important;
  }
  
  .app-screenshots {
    padding: 60px 0;
  }
} 