/* ═══════════════════════════════════════════════════════════════
   Tailwind Utilities - KonyaStrafor.com
   Statik olarak derlenmiş Tailwind CSS utility sınıfları
   CDN yerine bu dosya kullanılır (performans iyileştirmesi)
   ═══════════════════════════════════════════════════════════════ */

/* ── Box Sizing (only) ── */
*, ::before, ::after { box-sizing: border-box; }

/* ── Layout ── */
/* Container: !important needed to override theme's .container { padding:0 } in style.css */
.main-content-section .container { width: 100% !important; margin-right: auto !important; margin-left: auto !important; padding-right: 1rem !important; padding-left: 1rem !important; float: none !important; }
@media (min-width: 640px) { .main-content-section .container { max-width: 640px !important; } }
@media (min-width: 768px) { .main-content-section .container { max-width: 768px !important; } }
@media (min-width: 1024px) { .main-content-section .container { max-width: 1024px !important; } }
@media (min-width: 1280px) { .main-content-section .container { max-width: 1280px !important; } }
/* Footer and topbar containers also need override */
.footer-wrapper .container, .topbar-custom .container { width: 100% !important; margin-right: auto !important; margin-left: auto !important; padding-right: 1rem !important; padding-left: 1rem !important; float: none !important; }
@media (min-width: 640px) { .footer-wrapper .container, .topbar-custom .container { max-width: 640px !important; } }
@media (min-width: 768px) { .footer-wrapper .container, .topbar-custom .container { max-width: 768px !important; } }
@media (min-width: 1024px) { .footer-wrapper .container, .topbar-custom .container { max-width: 1024px !important; } }
@media (min-width: 1280px) { .footer-wrapper .container, .topbar-custom .container { max-width: 1280px !important; } }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }

/* ── Flexbox ── */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0 { flex-shrink: 0; }
.shrink { flex-shrink: 1; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ── Grid ── */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .sm\:grid { display: grid !important; }
    .sm\:overflow-x-visible { overflow-x: visible !important; }
    .sm\:hidden { display: none !important; }
    .sm\:w-auto { width: auto !important; }
    .sm\:shrink { flex-shrink: 1; }
    .sm\:px-0 { padding-left: 0; padding-right: 0; }
    .sm\:mx-auto { margin-left: auto; margin-right: auto; }
    .sm\:pb-0 { padding-bottom: 0; }
    .sm\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .md\:grid { display: grid !important; }
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .md\:flex-row { flex-direction: row; }
    .md\:min-h-\[645px\] { min-height: 645px; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:h-12 { height: 3rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:overflow-x-visible { overflow-x: visible !important; }
    .md\:w-auto { width: auto !important; }
    .md\:shrink { flex-shrink: 1; }
    .md\:px-0 { padding-left: 0; padding-right: 0; }
    .md\:mx-auto { margin-left: auto; margin-right: auto; }
    .md\:pb-0 { padding-bottom: 0; }
    .md\:mb-0 { margin-bottom: 0; }
    .md\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:col-span-3 { grid-column: span 3 / span 3; }
    .md\:border-r { border-right-width: 1px; border-right-style: solid; }
    .md\:items-center { align-items: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:text-\[11px\] { font-size: 11px; }
    .md\:bottom-8 { bottom: 2rem; }
    .md\:left-auto { left: auto; }
    .md\:right-8 { right: 2rem; }
    .md\:translate-x-0 { --tw-translate-x: 0px; transform: translateX(0px); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
    .lg\:block { display: block !important; }
    .lg\:grid { display: grid !important; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:text-\[15px\] { font-size: 15px; }
    .lg\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .lg\:bg-transparent { background-color: transparent; }
    .lg\:bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
    .lg\:from-slate-950\/95 { --tw-gradient-from: rgb(2 6 23 / 0.95); --tw-gradient-to: rgb(2 6 23 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
    .lg\:via-slate-950\/70 { --tw-gradient-to: rgb(2 6 23 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(2 6 23 / 0.7), var(--tw-gradient-to); }
    .lg\:via-40\% { --tw-gradient-via-position: 40%; }
    .lg\:to-transparent { --tw-gradient-to: transparent; }
    .lg\:gap-8 { gap: 2rem; }
}

/* ── Spacing ── */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }
.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; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.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; }
.mb-20 { margin-bottom: 5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.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-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.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-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pr-4 { padding-right: 1rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-10 { row-gap: 2.5rem; }

/* ── Sizing ── */
.w-1\/3 { width: 33.333333%; }
.w-1\/4 { width: 25%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-\[76vw\] { width: 76vw; }
.h-1 { height: 0.25rem; }
.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-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-\[3px\] { height: 3px; }
.h-\[2px\] { height: 2px; }
.h-\[450px\] { height: 450px; }
.min-h-\[450px\] { min-height: 450px; }
.min-w-full { min-width: 100%; }
.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-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-none { max-width: none; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }

/* ── 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; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

/* ── Colors ── */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-gray-950 { color: #030712; }
.text-slate-400 { color: #94a3b8; }
.text-slate-800 { color: #1e293b; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-blue-900 { color: #1e3a5f; }
.text-blue-100 { color: #dbeafe; }
.text-green-300 { color: #86efac; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-amber-600 { color: #d97706; }
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-500 { background-color: #22c55e; }
.bg-\[\#30b566\] { background-color: #30b566; }
.bg-\[\#1b3f2b\] { background-color: #1b3f2b; }
.bg-\[\#0f172a\] { background-color: #0f172a; }
.bg-\[\#fafafb\] { background-color: #fafafb; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950\/50 { background-color: rgb(2 6 23 / 0.5); }

/* ── Borders ── */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-gray-50 { border-color: #f9fafb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-150\/80 { border-color: rgba(229, 231, 235, 0.8); }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-200\/60 { border-color: rgba(229, 231, 235, 0.6); }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-500 { border-color: #3b82f6; }
.border-blue-600 { border-color: #2563eb; }
.border-transparent { border-color: transparent; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* ── Shadows & Effects ── */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.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-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.opacity-0\.9 { opacity: 0.9; }

/* ── Overflow ── */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ── Transforms ── */
.transform { transform: var(--tw-transform); }
.translate-y-0 { --tw-translate-y: 0px; transform: translateY(0px); }
.translate-y-20 { --tw-translate-y: 5rem; transform: translateY(5rem); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
.-translate-y-0\.5 { transform: translateY(-0.125rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.rotate-3 { --tw-rotate: 3deg; transform: rotate(3deg); }
.rotate-180 { transform: rotate(180deg); }
.scale-102 { transform: scale(1.02); }
.scale-101 { transform: scale(1.01); }

/* ── Transitions ── */
.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; }
.duration-75 { transition-duration: 75ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-250 { transition-duration: 250ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ── Hover & Focus States ── */
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-pink-600:hover { background-color: #db2777; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-\[\#289e56\]:hover { background-color: #289e56; }
.hover\:bg-\[\#1877f2\]:hover { background-color: #1877f2; }
.hover\:bg-\[\#e1306c\]:hover { background-color: #e1306c; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-500:hover { color: #3b82f6; }
.hover\:text-pink-500:hover { color: #ec4899; }
.hover\:text-sky-400:hover { color: #38bdf8; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.hover\:border-blue-200:hover { border-color: #bfdbfe; }
.hover\:border-blue-500:hover { border-color: #3b82f6; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.active\:scale-95:active { transform: scale(0.95); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:border-blue-500:focus { border-color: #3b82f6; }
.group:hover .group-hover\:text-blue-600 { color: #2563eb; }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:bg-blue-600 { background-color: #2563eb; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-102 { transform: scale(1.02); }
.group:hover .group-hover\:rotate-1 { transform: rotate(1deg); }
.group:hover .group-hover\:scale-101 { transform: scale(1.01); }
.group:hover .group-hover\:-translate-y-1 { transform: translateY(-0.25rem); }
.group:hover .group-hover\:from-black\/90 { --tw-gradient-from: rgb(0 0 0 / 0.9); }
.group { position: relative; }
.cursor-pointer { cursor: pointer; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-black\/80 { --tw-gradient-from: rgb(0 0 0 / 0.8); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-to: rgb(37 99 235 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-indigo-700 { --tw-gradient-to: #4338ca; }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.snap-x { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[99\] { z-index: 99; }
.z-\[999\] { z-index: 999; }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; }
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { border-color: #f3f4f6; }
.bg-white\/5 { background-color: rgb(255 255 255 / 0.05); }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-gray-50\/20 { background-color: rgb(249 250 251 / 0.2); }
.bg-blue-50\/50 { background-color: rgb(239 246 255 / 0.5); }
.border-white\/5 { border-color: rgb(255 255 255 / 0.05); }
.border-green-500\/10 { border-color: rgb(34 197 94 / 0.1); }
.-mr-32 { margin-right: -8rem; }
.-mt-32 { margin-top: -8rem; }
.-left-3\.5 { left: -0.875rem; }
.-right-3\.5 { right: -0.875rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.left-1\/2 { left: 50%; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-1\/2 { top: 50%; }
.bottom-6 { bottom: 1.5rem; }

/* ── Responsive: Text sizes ── */
@media (min-width: 640px) { .sm\:text-5xl { font-size: 3rem; line-height: 1; } .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; } }

/* ── Accessibility ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* ── Scrollbar Hide ── */
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

/* ── Arbitrary Width ── */
.w-\[76vw\] { width: 76vw; }

/* ── Extra border colors ── */
.border-gray-150\/80 { border-color: rgb(229 231 235 / 0.8); }
.md\:border-gray-200\/60 { border-color: rgb(229 231 235 / 0.6); }

/* ── Overflow overrides (theme sets overflow:hidden on many elements) ── */
.overflow-x-auto { overflow-x: auto !important; }
