@font-face {
  font-family: "Assos";
  src: url("fonts/Lenos-Bold\ \(1\).otf");
}

* {
  box-sizing: border-box;
  font-family: "Assos", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #2f184f,
    #4C2C72,
    #8a5fbf
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.start-btn {
  padding: 14px 40px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #4C2C72;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.start-btn:hover {
  transform: scale(1.05);
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.85;
  margin-bottom: 30px;
}

#answers button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#answers button:hover {
  background: rgba(255,255,255,0.3);
}

.hidden {
  display: none;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: white;
  color: #4C2C72;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.hashtag {
  color: #ffd6ff;
  font-weight: bold;
  font-size: 18px;
}

