* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather', serif;
  color: #11293F;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #dce6ff, #fff, #dce6ff);
  background-size: 100% 300%; /* make gradient taller than viewport */
  animation: gradientMove 30s ease-in-out infinite;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}


.hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
  max-width: 960px;
  /* limit max width */
  width: 100%;
  /* allow full width up to max-width */
}

.content {
  margin-bottom: 20px;
}

h1 {
  font-size: 4rem;
  color: #222;
}

p {
  font-size: 1.25rem;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}


.play-button {
  height: 60px;
  transition: transform 0.2s;
  margin: 30px;
}

.play-button:hover {
  transform: scale(1.05);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
  text-align: center;
}


.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature .icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 1.2rem;
}

.feature-description {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.7;
}
