*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

/* Animated background - subtle blobs behind content */
.animated-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bg-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.22;
  transform-origin: center;
}

.bg-shape-1 {
  top: -140px;
  left: -160px;
  background: radial-gradient(circle at 30% 30%, #facc15, #fef9c3 55%, transparent 70%);
  animation: float-1 30s ease-in-out infinite alternate;
}

.bg-shape-2 {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle at 70% 30%, #f97316, #fed7aa 55%, transparent 70%);
  animation: float-2 36s ease-in-out infinite alternate;
}

.bg-shape-3 {
  bottom: -200px;
  left: 40%;
  background: radial-gradient(circle at 40% 10%, #fbbf24, #fef3c7 55%, transparent 70%);
  animation: float-3 42s ease-in-out infinite alternate;
}

@keyframes float-1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, 25px, 0) scale(1.05); }
  100% { transform: translate3d(10px, 50px, 0) scale(1.02); }
}

@keyframes float-2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-30px, 25px, 0) scale(1.08); }
  100% { transform: translate3d(0, 55px, 0) scale(1.03); }
}

@keyframes float-3 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-25px, -30px, 0) scale(1.06); }
  100% { transform: translate3d(25px, -55px, 0) scale(1.02); }
}

/* Layout */
.page {
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 210px;
  height: auto;
  display: block;
}

/* Main content: intro on the left, verse on the right */
.main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.intro h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #111827;
}

.intro p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

.intro .note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Verse panel on the right */
.verse-panel {
  display: flex;
  justify-content: flex-end;
}

.verse-card {
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  padding: 1rem 1.15rem 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow:
    0 0 0 1px rgba(243, 244, 246, 0.9),
    0 20px 40px rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(10px);
}

.verse-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: #92400e;
}

.verse-reference {
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.6rem;
}

.verse-text {
  font-size: 0.95rem;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.verse-text p {
  margin-bottom: 0.45rem;
}

.verse-reflection {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding-top: 1rem;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 800px) {
  .main {
    grid-template-columns: minmax(0, 1fr);
  }

  .verse-panel {
    justify-content: flex-start;
  }

  .verse-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding-inline: 1.2rem;
  }

  .header {
    margin-bottom: 1.6rem;
  }
}
