@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;700&display=swap');
body {
  font-family: 'Noto Sans SC', sans-serif;
  background-color: #fffafb;
}

.hero-gradient {
  background: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.screenshot-container {
  width: 100%;
  max-width: 240px;
  position: relative;
  border: 6px solid #333;
  border-bottom-width: 10px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(244, 114, 182, 0.3);
  background: #f0f0f0;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(244, 114, 182, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* iPhone Frame */
.iphone-frame {
  position: relative;
  width: 200px;
  height: 400px;
  border: 8px solid #1a1a1a;
  border-radius: 36px;
  background: #000;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), inset 0 0 0 2px #333;
  overflow: hidden;
}

.iphone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: #1a1a1a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  overflow: hidden;
}

/* Cloud decorations */
.cloud {
  position: absolute;
  opacity: 0.8;
  pointer-events: none;
  filter: blur(1px);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}
