/**
 * Standalone CSS for Static Listicle Pages
 * 
 * This file contains all Tailwind utilities and theme variables needed
 * for static HTML listicle pages to render identically to the React preview.
 * 
 * Generated from: ListicleLayout.tsx, MovieListItem.tsx, ListicleFAQ.tsx, MoviePage components
 */

/* ========================================================================
   1. CSS Reset / Preflight
   ======================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: hsl(var(--border));
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  background-image: none;
}

/* ========================================================================
   2. CSS Custom Properties (Theme Variables - Light Mode)
   ======================================================================== */

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 322 100% 58%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 270 100% 70%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 322 100% 58%;
  --radius: 1rem;
}

/* ========================================================================
   3. Layout Utilities
   ======================================================================== */

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-y-2 { row-gap: 0.5rem; }

.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* ========================================================================
   4. Positioning
   ======================================================================== */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-4 { top: 1rem; }
.left-4 { left: 1rem; }
.-top-2 { top: -0.5rem; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ========================================================================
   5. Sizing
   ======================================================================== */

.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }

.h-1 { height: 0.25rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.min-h-\[160px\] { min-height: 160px; }
.max-h-\[7\.5rem\] { max-height: 7.5rem; }
.max-h-\[200rem\] { max-height: 200rem; }

.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; }
.max-w-7xl { max-width: 80rem; }

.aspect-\[2\/3\] { aspect-ratio: 2 / 3; }

/* ========================================================================
   6. Spacing (Margin & Padding)
   ======================================================================== */

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.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; }
.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.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-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-3 { padding-top: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pr-4 { padding-right: 1rem; }

.scroll-mt-4 { scroll-margin-top: 1rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ========================================================================
   7. Typography
   ======================================================================== */

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-left { text-align: left; }
.text-center { text-align: center; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.text-\[10px\] { font-size: 10px; line-height: 1rem; }

/* Prose typography for editorial content */
.prose { 
  line-height: 1.75;
  max-width: 65ch;
}
.prose p { margin-bottom: 0.75rem; }
.prose-sm { font-size: 0.875rem; }
.prose-base { font-size: 1rem; }
.max-w-none { max-width: none; }

.last\:mb-0:last-child { margin-bottom: 0; }

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================================================
   8. Colors
   ======================================================================== */

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-white { color: #ffffff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.underline { text-decoration-line: underline; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.min-w-0 { min-width: 0px; }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-yellow-300 { color: #fcd34d; }
.text-yellow-500 { color: #eab308; }
.text-yellow-900 { color: #713f12; }
.text-gray-800 { color: #1f2937; }
.text-amber-100 { color: #fef3c7; }

.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted\/30 { background-color: hsl(var(--muted) / 0.3); }
.bg-muted\/50 { background-color: hsl(var(--muted) / 0.5); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-white { background-color: #ffffff; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/25 { background-color: rgba(255, 255, 255, 0.25); }
.bg-muted\/60 { background-color: hsl(var(--muted) / 0.6); }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--primary) / 0)); }
.from-primary\/5 { --tw-gradient-from: hsl(var(--primary) / 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--primary) / 0)); }
.from-muted { --tw-gradient-from: hsl(var(--muted)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--muted) / 0)); }
.from-black\/70 { --tw-gradient-from: rgba(0, 0, 0, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.from-gray-300 { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); }
.from-amber-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); }

.via-primary\/10 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.1), var(--tw-gradient-to, hsl(var(--primary) / 0)); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.2), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.to-accent { --tw-gradient-to: hsl(var(--accent)); }
.to-primary\/5 { --tw-gradient-to: hsl(var(--primary) / 0.05); }
.to-muted\/50 { --tw-gradient-to: hsl(var(--muted) / 0.5); }
.to-transparent { --tw-gradient-to: transparent; }
.to-yellow-600 { --tw-gradient-to: #ca8a04; }
.to-gray-500 { --tw-gradient-to: #6b7280; }
.to-amber-800 { --tw-gradient-to: #92400e; }
.to-accent\/5 { --tw-gradient-to: hsl(var(--accent) / 0.05); }

.border-border { border-color: hsl(var(--border)); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-border\/30 { border-color: hsl(var(--border) / 0.3); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/40 { border-color: hsl(var(--primary) / 0.4); }

.fill-yellow-500 { fill: #eab308; }

/* ========================================================================
   9. Borders & Radius
   ======================================================================== */

.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l-3 { border-left-width: 3px; }
.border-l-4 { border-left-width: 4px; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========================================================================
   10. Effects & Shadows
   ======================================================================== */

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

.shadow-yellow-400\/50 { --tw-shadow-color: rgba(250, 204, 21, 0.5); box-shadow: var(--tw-shadow-colored); }
.shadow-gray-400\/50 { --tw-shadow-color: rgba(156, 163, 175, 0.5); box-shadow: var(--tw-shadow-colored); }
.shadow-amber-600\/50 { --tw-shadow-color: rgba(217, 119, 6, 0.5); box-shadow: var(--tw-shadow-colored); }
.shadow-primary\/30 { --tw-shadow-color: hsl(var(--primary) / 0.3); box-shadow: var(--tw-shadow-colored); }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ========================================================================
   11. Transforms & Transitions
   ======================================================================== */

.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1)); }
.translate-y-0 { --tw-translate-y: 0; }
.translate-y-5 { --tw-translate-y: 1.25rem; }
.-translate-y-1 { --tw-translate-y: -0.25rem; }
.scale-x-0 { --tw-scale-x: 0; }
.scale-x-100 { --tw-scale-x: 1; }
.rotate-180 { --tw-rotate: 180deg; transform: rotate(180deg); }
.origin-left { transform-origin: left; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* ========================================================================
   12. Image & Object Fit
   ======================================================================== */

.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ========================================================================
   13. Interactivity
   ======================================================================== */

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

/* ========================================================================
   14. Hover States
   ======================================================================== */

.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary\/80:hover { color: hsl(var(--primary) / 0.8); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-white:hover { color: #ffffff; }

.hover\:bg-primary\/90:hover { background-color: hsl(var(--primary) / 0.9); }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\:bg-background\/80:hover { background-color: hsl(var(--background) / 0.8); }
.hover\:bg-white\/25:hover { background-color: rgba(255, 255, 255, 0.25); }
.hover\:bg-muted\/60:hover { background-color: hsl(var(--muted) / 0.6); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:-translate-y-1:hover { --tw-translate-y: -0.25rem; transform: translateY(-0.25rem); }
.hover\:scale-x-100:hover { --tw-scale-x: 1; }

.group:hover .group-hover\:text-primary { color: hsl(var(--primary)); }
.group:hover .group-hover\:scale-x-100 { --tw-scale-x: 1; transform: scaleX(1); }
.group:hover .group-hover\:shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* ========================================================================
   15. Badge Component Styles
   ======================================================================== */

.badge-secondary {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

/* ========================================================================
   16. Button Component Styles
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

/* ========================================================================
   17. Card Component Styles
   ======================================================================== */

.card {
  border-radius: 0.75rem;
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* ========================================================================
   18. FAQ Accordion Styles
   ======================================================================== */

.faq-item {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-button:hover {
  color: hsl(var(--primary));
}

.faq-content {
  overflow: hidden;
  transition: height 0.2s ease-out;
}

.faq-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-chevron.open,
.faq-chevron.rotate-180 {
  transform: rotate(180deg);
}

/* ========================================================================
   19. How It Works Section
   ======================================================================== */

.how-it-works {
  display: none;
}

.how-it-works.visible {
  display: block;
}

/* ========================================================================
   20. Safe Area (Mobile)
   ======================================================================== */

@supports (padding: max(0px)) {
  .safe-area-inset-bottom {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* ========================================================================
   21. Background Cover
   ======================================================================== */

.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* ========================================================================
   22. Last Child Utilities
   ======================================================================== */

.last\:border-b-0:last-child { border-bottom-width: 0; }

/* ========================================================================
   23. Responsive Breakpoints
   ======================================================================== */

/* Small screens (sm: 640px) */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:inline { display: inline; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .sm\:items-center { align-items: center; }
  .sm\:justify-center { justify-content: center; }
  .sm\:flex-shrink-0 { flex-shrink: 0; }
  .sm\:w-20 { width: 5rem; }
  .sm\:w-28 { width: 7rem; }
  .sm\:w-14 { width: 3.5rem; }
  .sm\:h-14 { height: 3.5rem; }
  .sm\:h-full { height: 100%; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:mx-4 { margin-left: 1rem; margin-right: 1rem; }
  .sm\:mb-4 { margin-bottom: 1rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:aspect-auto { aspect-ratio: auto; }
  .sm\:relative { position: relative; }
  .sm\:top-auto { top: auto; }
  .sm\:left-auto { left: auto; }
  .sm\:bg-muted\/30 { background-color: hsl(var(--muted) / 0.3); }
}

/* Medium screens (md: 768px) */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:grid { display: grid; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:w-16 { width: 4rem; }
  .md\:w-32 { width: 8rem; }
  .md\:w-56 { width: 14rem; }
  .md\:mr-4 { margin-right: 1rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-16 { height: 4rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:my-14 { margin-top: 3.5rem; margin-bottom: 3.5rem; }
  .md\:mb-10 { margin-bottom: 2.5rem; }
  .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:prose-base { font-size: 1rem; }
}

/* Large screens (lg: 1024px) */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:w-40 { width: 10rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* ========================================================================
   24. Lucide Icon SVG Styles
   ======================================================================== */

.lucide {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================================================
   25. Print Styles
   ======================================================================== */

@media print {
  .fixed { position: static; }
  .md\:hidden { display: block; }
  .backdrop-blur-sm { backdrop-filter: none; }
}
