/* Playtime Casino - Static HTML Styles */
/* Dark Theme with Electric Blue Accents */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(222 47% 18%);
}

:root {
  --background: hsl(222 47% 5%);
  --foreground: hsl(210 40% 98%);
  --card: hsl(222 47% 8%);
  --card-foreground: hsl(210 40% 98%);
  --primary: hsl(199 89% 48%);
  --primary-foreground: hsl(222 47% 5%);
  --secondary: hsl(222 47% 12%);
  --secondary-foreground: hsl(210 40% 98%);
  --muted: hsl(222 47% 15%);
  --muted-foreground: hsl(215 20% 65%);
  --accent: hsl(199 89% 48%);
  --accent-foreground: hsl(222 47% 5%);
  --destructive: hsl(0 84% 60%);
  --border: hsl(222 47% 18%);
  --gold: hsl(45 93% 47%);
  --gold-foreground: hsl(222 47% 5%);
  --radius: 0.5rem;
  --gradient-primary: linear-gradient(135deg, hsl(199 89% 48%), hsl(222 89% 60%));
  --gradient-gold: linear-gradient(135deg, hsl(45 93% 47%), hsl(35 93% 57%));
  --shadow-neon: 0 0 20px hsla(199, 89%, 48%, 0.4);
  --shadow-gold: 0 0 20px hsla(45, 93%, 47%, 0.4);
  --shadow-card: 0 10px 40px hsla(222, 47%, 3%, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, hsl(222 47% 5%), hsl(222 47% 3%));
  color: var(--foreground);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }
ul, ol { list-style: none; }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.min-h-screen { min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; padding-top: 80px; }

/* Flexbox & Grid Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.75; }
.leading-tight { line-height: 1.25; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uppercase { text-transform: uppercase; }

/* Colors */
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-destructive { color: var(--destructive); }
.text-orange-400 { color: #fb923c; }
.text-slate-300 { color: #cbd5e1; }

/* Background */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-destructive { background-color: var(--destructive); }

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Spacing */
.p-2 { padding: 0.5rem; } .p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; } .pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; } .pb-5 { padding-bottom: 1.25rem; }
.pl-4 { padding-left: 1rem; } .pl-6 { padding-left: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; } .mt-20 { margin-top: 5rem; }
.ml-1 { margin-left: 0.25rem; } .ml-2 { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.w-full { width: 100%; } .w-auto { width: auto; }
.w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; } .w-8 { width: 2rem; } .w-10 { width: 2.5rem; }
.w-12 { width: 3rem; } .w-14 { width: 3.5rem; } .w-16 { width: 4rem; }
.w-20 { width: 5rem; } .w-24 { width: 6rem; } .w-48 { width: 12rem; }
.h-2 { height: 0.5rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; } .h-7 { height: 1.75rem; } .h-8 { height: 2rem; }
.h-10 { height: 2.5rem; } .h-12 { height: 3rem; } .h-14 { height: 3.5rem; }
.h-16 { height: 4rem; } .h-20 { height: 5rem; } .h-24 { height: 6rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; } .max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Position */
.relative { position: relative; } .absolute { position: absolute; }
.fixed { position: fixed; } .sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; } .left-0 { left: 0; } .right-0 { right: 0; }
.top-2 { top: 0.5rem; } .top-4 { top: 1rem; }
.right-2 { right: 0.5rem; } .right-4 { right: 1rem; }
.z-10 { z-index: 10; } .z-30 { z-index: 30; } .z-50 { z-index: 50; }

/* Border & Radius */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-border { border-color: var(--border); }
.border-none { border: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object */
.object-cover { object-fit: cover; }

/* Opacity */
.opacity-30 { opacity: 0.3; } .opacity-40 { opacity: 0.4; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.5s ease; }

/* Component Styles */
.glass-card {
  background: hsla(222, 47%, 8%, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsla(222, 47%, 18%, 0.5);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.neon-glow { box-shadow: var(--shadow-neon); }
.gold-glow { box-shadow: var(--shadow-gold); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-neon);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(199, 89%, 48%, 0.6);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: hsl(222 47% 5%);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(45, 93%, 47%, 0.6);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nav-link {
  color: var(--muted-foreground);
  transition: color 0.3s;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.5s ease;
  background: linear-gradient(145deg, hsl(222 47% 10%), hsl(222 47% 6%));
  border: 1px solid hsla(222, 47%, 18%, 0.5);
  cursor: pointer;
}
.game-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
  border-color: hsla(199, 89%, 48%, 0.5);
}

.aspect-video { aspect-ratio: 16/9; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-4-5 { aspect-ratio: 4/5; }

/* Badge */
.badge-hot {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  background: var(--destructive);
  color: white;
}
.badge-new {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
}
.badge-hot + .badge-new,
.badge-new:not(:first-child) { right: 3.5rem; }

/* Icon circle */
.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle-primary { background: hsla(199, 89%, 48%, 0.2); }
.icon-circle-gold { background: hsla(45, 93%, 47%, 0.2); }
.icon-circle-destructive { background: hsla(0, 84%, 60%, 0.2); }

/* Step circle */
.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.step-circle-gold {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-foreground);
  font-weight: 700;
  flex-shrink: 0;
}

/* Star */
.star { color: var(--gold); }

/* Gradient overlays */
.gradient-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), hsla(222, 47%, 5%, 0.9), hsla(222, 47%, 5%, 0.7));
}
.gradient-overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent);
}
.gradient-overlay-t-strong {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(222, 47%, 5%, 0.5), transparent);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(222, 47%, 8%, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsla(222, 47%, 18%, 0.3);
}
.header nav { padding: 1rem 0; }
.logo-img { height: 2rem; width: auto; }

/* Desktop nav */
.desktop-nav { display: none; }
.desktop-cta { display: none; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 50;
  overflow: hidden;
  display: none;
}
.dropdown-menu.show { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  color: var(--foreground);
}
.dropdown-menu a:hover {
  background: hsla(199, 89%, 48%, 0.1);
  color: var(--primary);
}

/* Mobile menu */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mobile-menu.show { display: flex; flex-direction: column; gap: 1rem; }

/* SVG Icons inline */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

/* Footer */
.footer {
  background: hsla(222, 47%, 8%, 0.8);
  backdrop-filter: blur(24px);
  border-top: 1px solid hsla(222, 47%, 18%, 0.3);
  margin-top: 5rem;
}
.footer h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { color: var(--muted-foreground); transition: color 0.3s; }
.footer a:hover { color: var(--primary); }
.footer .social-icons { display: flex; gap: 1rem; }
.footer .social-icons a { color: var(--muted-foreground); }
.footer .social-icons a:hover { color: var(--primary); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--muted-foreground); }

/* Prose for blog content */
.prose { max-width: none; }
.prose p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.75; }
.prose h2 { color: var(--foreground); font-size: 1.5rem; font-weight: 700; margin: 3rem 0 1rem; }
.prose h3 { color: var(--foreground); font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: var(--muted-foreground); margin-bottom: 0.5rem; line-height: 1.75; }
.prose strong { color: var(--foreground); }
.prose a { color: var(--primary); }
.prose a:hover { text-decoration: underline; }
.prose figure { margin: 2rem 0; }
.prose figcaption { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.75rem; }

/* Pro tip box */
.tip-box {
  padding: 1.5rem;
  background: hsla(199, 89%, 48%, 0.1);
  border: 1px solid hsla(199, 89%, 48%, 0.2);
  border-radius: 0.75rem;
  margin: 2rem 0;
}
.reward-box {
  padding: 1.5rem;
  background: hsla(199, 89%, 48%, 0.05);
  border: 1px solid hsla(199, 89%, 48%, 0.1);
  border-radius: 0.75rem;
  margin: 2rem 0;
}

/* Accordion / FAQ */
.faq-item {
  margin-bottom: 1rem;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--foreground);
  background: hsla(222, 47%, 8%, 0.8);
  backdrop-filter: blur(24px);
  border: 1px solid hsla(222, 47%, 18%, 0.5);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-trigger .chevron {
  transition: transform 0.3s;
  color: var(--muted-foreground);
}
.faq-trigger.open .chevron { transform: rotate(180deg); }
.faq-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  background: hsla(222, 47%, 8%, 0.8);
  border: 1px solid hsla(222, 47%, 18%, 0.5);
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  margin-top: -0.75rem;
}
.faq-content.show { display: block; }

/* Responsive */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:p-12 { padding: 3rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .section-title { font-size: 2.25rem; }
  .md\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
  .desktop-cta { display: flex; align-items: center; gap: 1rem; }
  .mobile-toggle { display: none; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .section-title { font-size: 3rem; }
}

/* Utility helpers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.list-disc { list-style: disc; }
.list-inside { list-style-position: inside; }

/* Hero min-height */
.hero-section { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-section img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }

/* Game grid item */
.game-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: hsla(222, 47%, 8%, 0.8);
  border: 1px solid hsla(222, 47%, 18%, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.game-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
  border-color: hsla(199, 89%, 48%, 0.5);
}
.game-grid-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s;
}
.game-grid-item:hover img { transform: scale(1.1); }
.game-grid-item .name {
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  transition: color 0.3s;
}
.game-grid-item:hover .name { color: var(--primary); }

/* Gold gradient bar */
.gold-gradient-bg { background: linear-gradient(to left, hsla(45, 93%, 47%, 0.1), transparent); }

/* Blog card */
.blog-card {
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { border-color: hsla(199, 89%, 48%, 0.3); }
.blog-card img { transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.1); }
.blog-card:hover h2, .blog-card:hover h3 { color: var(--primary); }

/* Search input */
.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 1rem;
  outline: none;
}
.search-input:focus { box-shadow: 0 0 0 2px var(--primary); }

/* Filter button */
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  background: var(--card);
  color: var(--muted-foreground);
}
.filter-btn:hover { color: var(--foreground); }
.filter-btn.active { background: var(--primary); color: var(--primary-foreground); }

/* Animate fade-in */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* FAQ Accordion */
.faq-accordion { overflow: hidden; transition: all 0.3s ease; }
.faq-accordion:hover { border-color: hsla(199, 89%, 48%, 0.3); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
}
.faq-toggle:hover { color: var(--primary); }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-accordion.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}
.faq-accordion.open .faq-content { padding-bottom: 1.25rem; }
.faq-content p, .faq-content ul, .faq-content ol { margin-bottom: 0.5rem; }
.faq-content a { color: var(--primary); text-decoration: underline; }
.faq-content a:hover { opacity: 0.8; }
