body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #F2C300;
  color: #0F1E4A;
  text-align: center;
  overflow-x: hidden;
}

.container {
  padding: 24px;
  max-width: 480px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  margin-bottom: 20px;
}

.topbar a {
  text-decoration: none;
  color: #0F1E4A;
  font-weight: 500;
}

/* LOGO */
h1.logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 68px;
  margin: 30px 0 10px 0;
  letter-spacing: 1px;
}

h2 {
  font-size: 22px;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

p {
  font-size: 15px;
  line-height: 1.5;
  margin: 8px 0;
}

.cta {
  margin: 28px 0 10px 0;
  background: #1E3A8A;
  color: white;
  padding: 16px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.cta:active {
  transform: scale(0.98);
}

.micro {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.section {
  margin: 60px 0;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  margin: 12px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.footer {
  font-size: 13px;
  margin: 60px 0 30px 0;
  opacity: 0.9;
}

/* Decorative balls */
.ball {
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0F1E4A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0.08;
  font-size: 22px;
  z-index: 1;
  animation: float 12s ease-in-out infinite;
}

.ball1 { top: 120px; left: -40px; }
.ball2 { top: 300px; right: -40px; }
.ball3 { top: 600px; left: -40px; }
.ball4 { bottom: 200px; right: -40px; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
