* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* ============================
   HERO
=========================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/partition.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #1a1a2e 100%);
  z-index: 0;
}

/* ============================
   HERO CONTENT
=========================== */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 20px;
  text-align: center;
}

.hero-logo {
  width: 130px;
  filter: drop-shadow(0 6px 20px rgba(242, 191, 0, 0.35));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================
   VERSE CARD
=========================== */
.verse-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 191, 0, 0.3);
  border-top: 4px solid #F2BF00;
  border-radius: 18px;
  padding: 36px 44px;
  max-width: 680px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.verse-card-deco {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(242, 191, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.note {
  position: absolute;
  color: rgba(242, 191, 0, 0.15);
  font-size: 1.8rem;
  animation: floatNote 6s ease-in-out infinite;
}
.note-1 { top: 14px; left: 18px; animation-delay: 0s; }
.note-2 { top: 14px; right: 18px; animation-delay: 2s; }
.note-3 { bottom: 14px; left: 36px; animation-delay: 4s; }

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50%       { transform: translateY(-8px) rotate(8deg); opacity: 0.3; }
}

.verse-card blockquote {
  font-size: 1.25rem;
  color: #f1f5f9;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 18px;
}

.verse-card cite {
  font-size: 0.85rem;
  color: #F2BF00;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================
   CTA BUTTON
=========================== */
.enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #c49a03, #F2BF00);
  color: #1a1a2e;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(196, 154, 3, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.3px;
}

.enter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196, 154, 3, 0.55);
}

/* ============================
   ADMIN LINK
=========================== */
.admin-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255,255,255,0.5);
  border-radius: 20px;
  font-size: 0.78rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s;
}

.admin-link:hover {
  background: rgba(242, 191, 0, 0.12);
  border-color: rgba(242, 191, 0, 0.3);
  color: #F2BF00;
}

/* ============================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .verse-card {
    padding: 24px 20px;
    margin: 0 12px;
  }

  .verse-card blockquote {
    font-size: 1.05rem;
  }

  .enter-btn {
    font-size: 0.9rem;
    padding: 14px 24px;
  }

  .hero-logo {
    width: 100px;
  }
}
