
.font-display {
  font-family: 'Cinzel', serif;
}
.guide-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.guide-content h3 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.guide-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.guide-content img {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.5rem 0;
  max-width: 100%;
}
.guide-content ul,
.guide-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.guide-content li {
  margin-bottom: 0.25rem;
}
.guide-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  color: rgba(52, 211, 153, 0.8);
}
.guide-content pre {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  overflow-x: auto;
}
.guide-content pre code {
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}
.guide-content blockquote {
  border-left: 3px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.04);
  padding: 0.75rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
}
.guide-content blockquote p {
  color: rgba(52, 211, 153, 0.7);
  margin-bottom: 0;
}
.guide-content a {
  color: rgba(52, 211, 153, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-content a:hover {
  color: #34d399;
}
.guide-content strong {
  color: rgba(255, 255, 255, 0.7);
}
.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  color: #07090d;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px -4px rgba(52, 211, 153, 0.3);
}
.cta-primary:hover {
  box-shadow: 0 0 30px -4px rgba(52, 211, 153, 0.5);
  transform: translateY(-1px);
}
.cta-primary:active {
  transform: translateY(0) scale(0.98);
}
.cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cta-primary:hover .cta-shimmer {
  transform: translateX(100%);
}

/* Mobile drawer transitions */
.drawer-enter-active,
.drawer-leave-active {
  transition: opacity 0.2s ease;
}
.drawer-enter-active .drawer-panel,
.drawer-leave-active .drawer-panel {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-enter-from,
.drawer-leave-to {
  opacity: 0;
}
.drawer-enter-from .drawer-panel,
.drawer-leave-to .drawer-panel {
  transform: translateX(-100%);
}
