:root {
  --primary: #ffb347;
  --accent: #6ec6ff;
  --bg: #f7f7fa;
  --text: #222;
  --card: #fff;
  --shadow: 0 4px 16px rgba(0,0,0,0.07);
  --radius: 18px;
  --font: 'Quicksand', 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(135deg, #e0e7ef 0%, #f7f7fa 100%);
  color: var(--text);
  min-height: 100vh;
}

.glass {
  background: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
}



header {
  background: linear-gradient(120deg, #a18cd1 0%, #fbc2eb 100%);
  background-size: 200% 200%;
  animation: animatedGradient 6s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


h1 {
  font-size: 2.8rem;
  margin: 0;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.5rem 0 2rem 0;
}

.hero-graphic {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.28);
  margin-bottom: 1.2rem;
  overflow: hidden;
}


.hero-graphic {
  margin-bottom: 1.2rem;
}

.hero h2 {
  font-size: 2rem;
  margin: 0.5rem 0 0.2rem 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 1.5rem 1.2rem;
  width: 220px;
  text-align: center;
  transition: transform 0.15s;
}


.feature-card:hover {
  transform: translateY(-6px) scale(1.04);
}

.emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1.2rem 0 1.5rem 0;
  font-size: 1rem;
  color: #888;
}

@media (max-width: 700px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 90%;
    max-width: 320px;
  }
}
