/* Tilt Card */
.tilt-card {
  perspective: 1000px;
}
.tilt-card .phone-mockup {
  width: 270px;
  height: 520px;
  margin: auto;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg,#111,#000);
  padding: 15px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.tilt-card:hover .phone-mockup {
  transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
}
.phone-screen {
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.phone-screen img {
  border-radius: 1.5rem;
  object-fit: cover;
}

/* Features */
.feature {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 1rem;
  transition: transform 0.3s, background 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  background: rgba(255,200,0,0.1);
}

/* Screenshots */
.screenshot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot {
  width: 100%;
  border-radius: 1.2rem;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.screenshot-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255,200,0,0.3);
}
.screenshot-wrapper:hover .screenshot {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.screenshot-wrapper:hover .screenshot-overlay {
  opacity: 1;
}
