/* Custom styles beyond Tailwind */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Highlighted card animation */
.highlighted-card {
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.ring-animate {
  animation: pulse-ring 0.6s ease-in-out 3;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(147, 51, 234, 0); }
}

/* Sticky disclaimer banner */
.sticky-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #374151;
  padding: 10px 16px;
  font-size: 0.7rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.4;
}

.sticky-disclaimer button {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure body has bottom padding for sticky disclaimer */
body {
  padding-bottom: 60px;
}

/* Mobile-first media queries */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .case-card {
    padding: 1rem;
  }
}

@media (min-width: 481px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

/* Ensure no horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
