@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

body {
  margin: 0;
  font-family: 'Fredoka One', cursive, sans-serif;
  background: linear-gradient(135deg, #ffe6fa 0%, #ffe6c1 100%);
  color: #6b2d5c;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(120deg, #ffb6e6 0%, #ffecb3 100%);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 8px 32px rgba(255, 182, 230, 0.2);
}

.logo {
  width: 96px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px #ffb6e6);
}

h1 {
  font-size: 2.8rem;
  margin: 0.5rem 0;
  color: #e94f8b;
  text-shadow: 0 2px 8px #fff0f7;
}

.subtitle {
  font-size: 1.3rem;
  color: #a14fd1;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff6fd8 0%, #ffde7d 100%);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  box-shadow: 0 4px 16px #ffb6e6;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px #ffb6e6;
}

.features {
  margin: 2.5rem auto 1.5rem auto;
  max-width: 600px;
  background: #fff6fa;
  border-radius: 32px;
  box-shadow: 0 2px 12px #ffb6e6;
  padding: 2rem 1.5rem;
}

.features h2 {
  color: #e94f8b;
  margin-bottom: 1rem;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  font-size: 1.1rem;
  margin: 0.7rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.features li:before {
  content: '🍭';
  position: absolute;
  left: 0;
}

.screenshots {
  text-align: center;
  margin: 2rem 0 3rem 0;
}

.screenshots h2 {
  color: #a14fd1;
  margin-bottom: 1.2rem;
}

.images {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.images img {
  border-radius: 24px;
  box-shadow: 0 2px 16px #ffb6e6;
  width: 300px;
  height: 180px;
  object-fit: cover;
  background: #fff;
}

footer {
  text-align: center;
  padding: 1.2rem 0;
  background: #ffe6fa;
  color: #a14fd1;
  font-size: 1rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 2rem;
}

@media (max-width: 700px) {
  .images {
    flex-direction: column;
    gap: 1rem;
  }
  .features, .screenshots {
    padding: 1rem;
  }
  .images img {
    width: 90vw;
    height: 30vw;
    min-height: 120px;
  }
  h1 {
    font-size: 2rem;
  }
} 