/* Layout, hero and card container styles (extracted) */

.hero{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;height:calc(100vh - 120px)}
.card{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:4;
  width:min(880px,92%);
  max-height: calc(100vh - 160px);
  overflow: auto;
  background:linear-gradient(180deg, rgba(0,0,0,0.72), rgba(10,10,10,0.72));
  border:1px solid rgba(0,255,65,0.08);
  padding:22px;
  border-radius:14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.75);
  display:grid;
  gap:16px;
  text-align:center;
  align-items:center;
  justify-items:center;
}

/* card title/subheading */
@keyframes title-pop {
  0%   { transform: scale(1); text-shadow: 0 6px 20px rgba(57,255,20,0.06); color: var(--green-2); }
  35%  { transform: scale(1.06); text-shadow: 0 18px 48px rgba(57,255,20,0.22); color: #b7ffb7; }
  70%  { transform: scale(1.02); text-shadow: 0 12px 36px rgba(57,255,20,0.14); color: #dfffe0; }
  100% { transform: scale(1); text-shadow: 0 6px 20px rgba(57,255,20,0.06); color: var(--green-2); }
}
.card-title{
  display:block;
  font-family: 'UnifrakturCook', 'Cormorant Garamond', serif;
  font-size:26px;
  color:var(--green-2);
  margin:0 0 8px 0;
  padding:6px 12px;
  text-align:center;
  letter-spacing:0.6px;
  font-weight:700;
  position:sticky;
  top:8px;
  z-index:6;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.32));
  border-radius:8px;
  backdrop-filter: blur(4px);
  transform-origin: center;
  will-change: transform, text-shadow, color;
  animation: title-pop 2200ms cubic-bezier(.2,.9,.2,1) infinite;
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.45);
  transition: text-shadow .18s ease, color .18s ease, transform .18s ease;
}
.card-subheading{
  margin-top:6px;
  font-family: 'UnifrakturCook', 'Cormorant Garamond', serif;
  font-size:16px;
  color: rgba(124,255,178,0.95);
  letter-spacing:0.8px;
  font-weight:700;
  text-align:center;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
  -webkit-text-stroke: 0.35px rgba(0,0,0,0.35);
}

/* links row and responsive tweaks */
.links-row{display:flex;justify-content:center;align-items:center;gap:18px;margin-top:14px;flex-wrap:wrap}
@media (max-width:640px){
  .card{padding:18px}
  .card-title{ font-size:18px; top:6px; padding:6px 10px }
  .section-title{ font-size:14px }
}