@charset "UTF-8";

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 22px 6px rgba(16,185,129,0.9); }
}
@keyframes float-up {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.glow-btn {
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.float-anim {
  animation: float-up 4s ease-in-out infinite;
}
.parallax-hero {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.prose {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  color: #34d399;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid rgba(52,211,153,0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #6ee7b7;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose a {
  color: #34d399;
  text-decoration: underline;
}
.prose a:hover {
  color: #6ee7b7;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #34d399;
  padding-left: 1em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}
.prose thead {
  background: rgba(16,185,129,0.2);
}
.prose th {
  color: #34d399;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(52,211,153,0.25);
}
.prose td {
  color: #cbd5e1;
  padding: 0.5em 1em;
  border: 1px solid rgba(52,211,153,0.15);
}
.prose tr:nth-child(even) td {
  background: rgba(16,185,129,0.05);
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
}
.alpine-bg {
  background: linear-gradient(160deg, #050d08 0%, #0a1f12 50%, #071409 100%);
}
.card-glass {
  background: rgba(10,25,16,0.85);
  border: 1px solid rgba(52,211,153,0.2);
  backdrop-filter: blur(8px);
}
.emerald-border {
  border: 1px solid rgba(52,211,153,0.35);
}
.silver-text {
  color: #cbd5e1;
}
.mountain-divider {
  clip-path: polygon(0 60%, 10% 35%, 20% 55%, 30% 20%, 40% 45%, 50% 10%, 60% 40%, 70% 25%, 80% 50%, 90% 30%, 100% 55%, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(16,185,129,0.15), transparent);
  height: 80px;
  width: 100%;
}
