/* ================================================================
   Entireweb Status Page — Fristående CSS (ersätter Tailwind CDN)
   Alla klasser är baserade på faktisk HTML-källkod
   ================================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

/* ---------- Display & Layout ---------- */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; }
.flex         { display: flex; }
.grid         { display: grid; }
.hidden       { display: none; }

/* ---------- Flexbox ---------- */
.flex-col         { flex-direction: column; }
.flex-row         { flex-direction: row; }
.flex-wrap        { flex-wrap: wrap; }
.flex-nowrap      { flex-wrap: nowrap; }
.flex-1           { flex: 1 1 0%; }
.flex-shrink-0    { flex-shrink: 0; }
.items-start      { align-items: flex-start; }
.items-center     { align-items: center; }
.items-stretch    { align-items: stretch; }
.justify-start    { justify-content: flex-start; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.justify-end      { justify-content: flex-end; }
.self-start       { align-self: flex-start; }
.self-auto        { align-self: auto; }
.order-first      { order: -9999; }

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

/* ---------- Gap ---------- */
.gap-1  { gap: 0.25rem; }
.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-12 { gap: 3rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ---------- Position ---------- */
.static   { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }

.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.top-0    { top: 0; }
.top-1\/2 { top: 50%; }
.top-4    { top: 1rem; }
.top-6    { top: 1.5rem; }
.right-0  { right: 0; }
.right-2  { right: 0.5rem; }
.right-4  { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.left-0   { left: 0; }
.left-6   { left: 1.5rem; }
.-left-20 { left: -5rem; }
.-top-16  { top: -4rem; }
.-right-16{ right: -4rem; }
.-bottom-16 { bottom: -4rem; }

.z-40              { z-index: 40; }
.z-50              { z-index: 50; }
.z-\[50\]          { z-index: 50; }
.z-\[999999999\]   { z-index: 999999999; }
.z-\[1000000001\]  { z-index: 1000000001; }
.z-\[9999999999\]  { z-index: 9999999999; }

/* ---------- Sizing ---------- */
.w-full   { width: 100%; }
.w-auto   { width: auto; }
.w-1      { width: 0.25rem; }
.w-1\.5   { width: 0.375rem; }
.w-2      { width: 0.5rem; }
.w-3      { width: 0.75rem; }
.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-16     { width: 4rem; }
.w-20     { width: 5rem; }
.w-24     { width: 6rem; }
.w-32     { width: 8rem; }
.w-40     { width: 10rem; }
.w-44     { width: 11rem; }
.w-48     { width: 12rem; }
.w-56     { width: 14rem; }
.w-96     { width: 24rem; }
.w-0\.5   { width: 0.125rem; }

.h-1      { height: 0.25rem; }
.h-1\.5   { height: 0.375rem; }
.h-2      { height: 0.5rem; }
.h-3      { height: 0.75rem; }
.h-4      { height: 1rem; }
.h-5      { height: 1.25rem; }
.h-6      { height: 1.5rem; }
.h-8      { height: 2rem; }
.h-10     { height: 2.5rem; }
.h-12     { height: 3rem; }
.h-16     { height: 4rem; }
.h-20     { height: 5rem; }
.h-24     { height: 6rem; }
.h-32     { height: 8rem; }
.h-full   { height: 100%; }
.min-h-full      { min-height: 100%; }
.min-h-\[44px\]  { min-height: 44px; }
.min-h-\[48px\]  { min-height: 48px; }
.max-w-md        { max-width: 28rem; }
.max-w-lg        { max-width: 32rem; }
.max-w-2xl       { max-width: 42rem; }
.max-w-4xl       { max-width: 56rem; }
.max-w-5xl       { max-width: 64rem; }
.max-w-7xl       { max-width: 80rem; }
.max-h-72        { max-height: 18rem; }
.max-h-\[calc\(100vh-4rem\)\] { max-height: calc(100vh - 4rem); }

/* ---------- Margin ---------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1    { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-4    { margin-left: 1rem; margin-right: 1rem; }
.my-5    { margin-top: 1.25rem; margin-bottom: 1.25rem; }

.mt-0    { margin-top: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1    { margin-top: 0.25rem; }
.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; }

.mb-0    { margin-bottom: 0; }
.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-10   { margin-bottom: 2.5rem; }
.mb-12   { margin-bottom: 3rem; }
.mb-16   { margin-bottom: 4rem; }

.ml-2    { margin-left: 0.5rem; }
.ml-3    { margin-left: 0.75rem; }
.ml-4    { margin-left: 1rem; }
.ml-16   { margin-left: 4rem; }

.mr-1    { margin-right: 0.25rem; }
.mr-3    { margin-right: 0.75rem; }
.mr-4    { margin-right: 1rem; }
.mr-12   { margin-right: 3rem; }
.me-2\.5 { margin-inline-end: 0.625rem; }

/* ---------- Padding ---------- */
.p-2   { padding: 0.5rem; }
.p-4   { padding: 1rem; }
.p-6   { padding: 1.5rem; }
.p-8   { padding: 2rem; }
.p-10  { padding: 2.5rem; }
.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-7  { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8  { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.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-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; }

.pt-2  { padding-top: 0.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-2  { padding-bottom: 0.5rem; }
.pb-5  { padding-bottom: 1.25rem; }
.pb-8  { padding-bottom: 2rem; }

.pl-4  { padding-left: 1rem; }
.pl-6  { padding-left: 1.5rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-6  { padding-right: 1.5rem; }

/* ---------- Typography ---------- */
.text-\[11px\] { font-size: 11px; }
.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-5xl  { font-size: 3rem;     line-height: 1; }

.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }
.font-poppins  { font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif; }

.leading-relaxed { line-height: 1.625; }
.leading-snug    { line-height: 1.375; }
.leading-tight   { line-height: 1.25; }
.leading-none    { line-height: 1; }

.tracking-wide   { letter-spacing: 0.025em; }
.tracking-wider  { letter-spacing: 0.05em; }

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

.uppercase   { text-transform: uppercase; }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { overflow-wrap: break-word; }

/* ---------- Colors — Text ---------- */
.text-white        { color: #ffffff; }
.text-transparent  { color: transparent; }
.text-gray-300     { color: #d1d5db; }
.text-gray-400     { color: #9ca3af; }
.text-gray-500     { color: #6b7280; }
.text-gray-600     { color: #4b5563; }
.text-gray-700     { color: #374151; }
.text-gray-900     { color: #111827; }
.text-slate-600    { color: #475569; }
.text-slate-700    { color: #334155; }
.text-blue-200\/70 { color: rgba(191, 219, 254, 0.7); }
.text-blue-300     { color: #93c5fd; }
.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-green-300    { color: #86efac; }
.text-green-400    { color: #4ade80; }
.text-green-600    { color: #16a34a; }
.text-green-700    { color: #15803d; }
.text-emerald-700  { color: #047857; }
.text-amber-600    { color: #d97706; }
.text-amber-800    { color: #92400e; }
.text-amber-900    { color: #78350f; }
.text-orange-600   { color: #ea580c; }
.text-red-500      { color: #ef4444; }
.text-red-600      { color: #dc2626; }
.text-red-800      { color: #991b1b; }
.text-rose-700     { color: #be123c; }
.text-yellow-500   { color: #eab308; }

/* ---------- Colors — Background ---------- */
.bg-white          { background-color: #ffffff; }
.bg-white\/5       { background-color: rgba(255,255,255,0.05); }
.bg-white\/10      { background-color: rgba(255,255,255,0.10); }
.bg-white\/20      { background-color: rgba(255,255,255,0.20); }
.bg-white\/30      { background-color: rgba(255,255,255,0.30); }
.bg-white\/60      { background-color: rgba(255,255,255,0.60); }
.bg-white\/70      { background-color: rgba(255,255,255,0.70); }
.bg-white\/80      { background-color: rgba(255,255,255,0.80); }
.bg-black\/50      { background-color: rgba(0,0,0,0.5); }
.bg-\[\#2a2b6d\]   { background-color: #2a2b6d; }
.bg-blue-50        { background-color: #eff6ff; }
.bg-blue-100       { background-color: #dbeafe; }
.bg-blue-100\/60   { background-color: rgba(219,234,254,0.6); }
.bg-blue-500\/10   { background-color: rgba(59,130,246,0.1); }
.bg-blue-500\/25   { background-color: rgba(59,130,246,0.25); }
.bg-blue-500\/40   { background-color: rgba(59,130,246,0.4); }
.bg-blue-500\/10   { background-color: rgba(59,130,246,0.10); }
.bg-emerald-50\/50 { background-color: rgba(236,253,245,0.5); }
.bg-green-50       { background-color: #f0fdf4; }
.bg-green-50\/70   { background-color: rgba(240,253,244,0.7); }
.bg-green-100      { background-color: #dcfce7; }
.bg-green-100\/60  { background-color: rgba(220,252,231,0.6); }
.bg-green-500\/10  { background-color: rgba(34,197,94,0.1); }
.bg-green-500\/25  { background-color: rgba(34,197,94,0.25); }
.bg-green-500\/40  { background-color: rgba(34,197,94,0.4); }
.bg-amber-50       { background-color: #fffbeb; }
.bg-red-50         { background-color: #fef2f2; }
.bg-red-100        { background-color: #fee2e2; }
.bg-red-100\/60    { background-color: rgba(254,226,226,0.6); }
.bg-red-500\/25    { background-color: rgba(239,68,68,0.25); }
.bg-red-500\/40    { background-color: rgba(239,68,68,0.4); }
.bg-rose-50\/80    { background-color: rgba(255,241,242,0.8); }
.bg-yellow-100\/60 { background-color: rgba(254,249,195,0.6); }
.bg-yellow-500\/10 { background-color: rgba(234,179,8,0.1); }
.bg-yellow-500\/25 { background-color: rgba(234,179,8,0.25); }
.bg-yellow-500\/40 { background-color: rgba(234,179,8,0.4); }
.bg-gray-100       { background-color: #f3f4f6; }
.bg-gray-200\/50   { background-color: rgba(229,231,235,0.5); }
.bg-orange-50      { background-color: #fff7ed; }
.bg-indigo-600     { background-color: #4f46e5; }
.bg-purple-500\/10 { background-color: rgba(168,85,247,0.1); }
.bg-purple-500\/20 { background-color: rgba(168,85,247,0.2); }
.bg-emerald-100    { background-color: #d1fae5; }
.bg-teal-200       { background-color: #99f6e4; }

/* ---------- Background Gradients ---------- */
.bg-gradient-to-r   { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br  { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b   { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-tr  { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }

/* -- gradient color stops -- */
.from-white               { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-blue-50\/90         { --tw-gradient-from: rgba(239,246,255,.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239,246,255,0)); }
.from-blue-500            { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59,130,246,0)); }
.from-blue-500\/15        { --tw-gradient-from: rgba(59,130,246,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59,130,246,0)); }
.from-blue-600            { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37,99,235,0)); }
.from-blue-950            { --tw-gradient-from: #172554; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(23,37,84,0)); }
.from-emerald-50\/80      { --tw-gradient-from: rgba(236,253,245,.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236,253,245,0)); }
.from-emerald-100         { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209,250,229,0)); }
.from-emerald-200\/20     { --tw-gradient-from: rgba(167,243,208,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167,243,208,0)); }
.from-emerald-500         { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16,185,129,0)); }
.from-green-200\/20       { --tw-gradient-from: rgba(187,247,208,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187,247,208,0)); }
.from-green-400           { --tw-gradient-from: #4ade80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74,222,128,0)); }
.from-green-500           { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34,197,94,0)); }
.from-amber-500           { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245,158,11,0)); }
.from-orange-500          { --tw-gradient-from: #f97316; }
.from-red-400             { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248,113,113,0)); }
.from-red-200\/20         { --tw-gradient-from: rgba(254,202,202,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254,202,202,0)); }
.from-rose-100            { --tw-gradient-from: #ffe4e6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,228,230,0)); }
.from-rose-50\/80         { --tw-gradient-from: rgba(255,241,242,.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,241,242,0)); }
.from-rose-200\/20        { --tw-gradient-from: rgba(254,205,211,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254,205,211,0)); }
.from-rose-500            { --tw-gradient-from: #f43f5e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244,63,94,0)); }
.from-yellow-500          { --tw-gradient-from: #eab308; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234,179,8,0)); }
.from-indigo-50\/95       { --tw-gradient-from: rgba(238,242,255,.95); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238,242,255,0)); }
.from-purple-50           { --tw-gradient-from: #faf5ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250,245,255,0)); }
.from-purple-500\/15      { --tw-gradient-from: rgba(168,85,247,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168,85,247,0)); }
.from-slate-50\/90        { --tw-gradient-from: rgba(248,250,252,.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248,250,252,0)); }
.from-slate-50\/95        { --tw-gradient-from: rgba(248,250,252,.95); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248,250,252,0)); }
.from-slate-100\/30       { --tw-gradient-from: rgba(241,245,249,.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(241,245,249,0)); }
.from-slate-200\/15       { --tw-gradient-from: rgba(226,232,240,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(226,232,240,0)); }
.from-slate-900           { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15,23,42,0)); }
.from-teal-200\/20        { --tw-gradient-from: rgba(153,246,228,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153,246,228,0)); }
.from-pink-200\/20        { --tw-gradient-from: rgba(251,207,232,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251,207,232,0)); }
.from-pink-100\/50        { --tw-gradient-from: rgba(252,231,243,.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252,231,243,0)); }
.from-cyan-200\/20        { --tw-gradient-from: rgba(165,243,252,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165,243,252,0)); }
.from-gray-50             { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249,250,251,0)); }
.from-gray-100\/30        { --tw-gradient-from: rgba(243,244,246,.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243,244,246,0)); }
.from-blue-100\/50        { --tw-gradient-from: rgba(219,234,254,.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219,234,254,0)); }
.from-indigo-100\/50      { --tw-gradient-from: rgba(224,231,255,.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224,231,255,0)); }
.from-blue-200\/15        { --tw-gradient-from: rgba(191,219,254,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191,219,254,0)); }
.from-indigo-200\/15      { --tw-gradient-from: rgba(199,210,254,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199,210,254,0)); }
.from-indigo-100\/20      { --tw-gradient-from: rgba(224,231,255,.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224,231,255,0)); }

.via-indigo-950    { --tw-gradient-via: #1e1b4b; --tw-gradient-stops: var(--tw-gradient-from), #1e1b4b, var(--tw-gradient-to, rgba(30,27,75,0)); }
.via-blue-50\/30   { --tw-gradient-via: rgba(239,246,255,.3); --tw-gradient-stops: var(--tw-gradient-from), rgba(239,246,255,.3), var(--tw-gradient-to, rgba(239,246,255,0)); }
.via-blue-50\/90   { --tw-gradient-via: rgba(239,246,255,.9); --tw-gradient-stops: var(--tw-gradient-from), rgba(239,246,255,.9), var(--tw-gradient-to, rgba(239,246,255,0)); }
.via-teal-50\/60   { --tw-gradient-via: rgba(240,253,250,.6); --tw-gradient-stops: var(--tw-gradient-from), rgba(240,253,250,.6), var(--tw-gradient-to, rgba(240,253,250,0)); }
.via-pink-50\/60   { --tw-gradient-via: rgba(253,242,248,.6); --tw-gradient-stops: var(--tw-gradient-from), rgba(253,242,248,.6), var(--tw-gradient-to, rgba(253,242,248,0)); }
.via-gray-50\/80   { --tw-gradient-via: rgba(249,250,251,.8); --tw-gradient-stops: var(--tw-gradient-from), rgba(249,250,251,.8), var(--tw-gradient-to, rgba(249,250,251,0)); }
.via-gray-900      { --tw-gradient-via: #111827; --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17,24,39,0)); }
.via-white         { --tw-gradient-via: #fff; --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255,255,255,0)); }

.to-gray-50           { --tw-gradient-to: #f9fafb; }
.to-gray-50\/80       { --tw-gradient-to: rgba(249,250,251,.8); }
.to-blue-100\/50      { --tw-gradient-to: rgba(219,234,254,.5); }
.to-blue-500\/90      { --tw-gradient-to: rgba(59,130,246,.9); }
.to-blue-600          { --tw-gradient-to: #2563eb; }
.to-emerald-400       { --tw-gradient-to: #34d399; }
.to-emerald-500       { --tw-gradient-to: #10b981; }
.to-green-200         { --tw-gradient-to: #bbf7d0; }
.to-green-300         { --tw-gradient-to: #86efac; }
.to-green-500\/90     { --tw-gradient-to: rgba(34,197,94,.9); }
.to-green-600         { --tw-gradient-to: #16a34a; }
.to-indigo-600        { --tw-gradient-to: #4f46e5; }
.to-indigo-200\/15    { --tw-gradient-to: rgba(199,210,254,.15); }
.to-indigo-100\/20    { --tw-gradient-to: rgba(224,231,255,.2); }
.to-orange-500        { --tw-gradient-to: #f97316; }
.to-orange-600        { --tw-gradient-to: #ea580c; }
.to-pink-200\/20      { --tw-gradient-to: rgba(251,207,232,.2); }
.to-pink-100\/50      { --tw-gradient-to: rgba(252,231,243,.5); }
.to-pink-600          { --tw-gradient-to: #db2777; }
.to-purple-50\/30     { --tw-gradient-to: rgba(250,245,255,.3); }
.to-purple-500\/15    { --tw-gradient-to: rgba(168,85,247,.15); }
.to-purple-950        { --tw-gradient-to: #3b0764; }
.to-red-200\/20       { --tw-gradient-to: rgba(254,202,202,.2); }
.to-red-50\/80        { --tw-gradient-to: rgba(254,242,242,.8); }
.to-red-500           { --tw-gradient-to: #ef4444; }
.to-red-500\/90       { --tw-gradient-to: rgba(239,68,68,.9); }
.to-rose-200\/20      { --tw-gradient-to: rgba(254,205,211,.2); }
.to-rose-200          { --tw-gradient-to: #fecdd3; }
.to-teal-200          { --tw-gradient-to: #99f6e4; }
.to-teal-100\/50      { --tw-gradient-to: rgba(204,251,241,.5); }
.to-teal-600          { --tw-gradient-to: #0d9488; }
.to-cyan-50\/80       { --tw-gradient-to: rgba(236,254,255,.8); }
.to-cyan-200\/20      { --tw-gradient-to: rgba(165,243,252,.2); }
.to-zinc-50\/90       { --tw-gradient-to: rgba(250,250,250,.9); }
.to-slate-900         { --tw-gradient-to: #0f172a; }
.to-slate-200\/15     { --tw-gradient-to: rgba(226,232,240,.15); }
.to-indigo-50\/95     { --tw-gradient-to: rgba(238,242,255,.95); }
.to-yellow-500\/90    { --tw-gradient-to: rgba(234,179,8,.9); }
.to-amber-600         { --tw-gradient-to: #d97706; }
.to-blue-200\/20      { --tw-gradient-to: rgba(191,219,254,.2); }
.to-blue-100\/20      { --tw-gradient-to: rgba(219,234,254,.2); }
.to-blue-500          { --tw-gradient-to: #3b82f6; }
.to-blue-950          { --tw-gradient-to: #172554; }
.to-slate-50\/95      { --tw-gradient-to: rgba(248,250,252,.95); }
.to-gray-100\/30      { --tw-gradient-to: rgba(243,244,246,.3); }
.to-white\/10         { --tw-gradient-to: rgba(255,255,255,.1); }
.to-white\/30         { --tw-gradient-to: rgba(255,255,255,.3); }

.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* ---------- Border ---------- */
.border      { border-width: 1px; border-style: solid; }
.border-0    { border-width: 0; }
.border-2    { border-width: 2px; border-style: solid; }
.border-4    { border-width: 4px; border-style: solid; }
.border-b    { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t    { border-top-width: 1px; border-top-style: solid; }
.border-l    { border-left-width: 1px; border-left-style: solid; }
.border-l-4  { border-left-width: 4px; border-left-style: solid; }
.border-r    { border-right-width: 1px; border-right-style: solid; }

.border-white        { border-color: #ffffff; }
.border-white\/10    { border-color: rgba(255,255,255,0.1); }
.border-white\/20    { border-color: rgba(255,255,255,0.2); }
.border-white\/50    { border-color: rgba(255,255,255,0.5); }
.border-white\/60    { border-color: rgba(255,255,255,0.6); }
.border-gray-100     { border-color: #f3f4f6; }
.border-gray-200     { border-color: #e5e7eb; }
.border-gray-200\/50 { border-color: rgba(229,231,235,0.5); }
.border-gray-300     { border-color: #d1d5db; }
.border-gray-300\/30 { border-color: rgba(209,213,219,0.3); }
.border-slate-200\/60{ border-color: rgba(226,232,240,0.6); }
.border-slate-300    { border-color: #cbd5e1; }
.border-blue-100     { border-color: #dbeafe; }
.border-blue-100\/50 { border-color: rgba(219,234,254,0.5); }
.border-blue-200     { border-color: #bfdbfe; }
.border-blue-200\/50 { border-color: rgba(191,219,254,0.5); }
.border-blue-200\/60 { border-color: rgba(191,219,254,0.6); }
.border-blue-400\/30 { border-color: rgba(96,165,250,0.3); }
.border-blue-400\/40 { border-color: rgba(96,165,250,0.4); }
.border-blue-400\/50 { border-color: rgba(96,165,250,0.5); }
.border-green-100    { border-color: #dcfce7; }
.border-green-400\/30{ border-color: rgba(74,222,128,0.3); }
.border-emerald-100  { border-color: #d1fae5; }
.border-emerald-100\/50 { border-color: rgba(209,250,229,0.5); }
.border-emerald-200\/50 { border-color: rgba(167,243,208,0.5); }
.border-red-200      { border-color: #fecaca; }
.border-rose-100\/50 { border-color: rgba(255,228,230,0.5); }
.border-amber-200\/50{ border-color: rgba(253,230,138,0.5); }
.border-purple-400\/30{ border-color: rgba(192,132,252,0.3); }
.border-purple-400\/40{ border-color: rgba(192,132,252,0.4); }
.border-transparent  { border-color: transparent; }

/* ---------- Border Radius ---------- */
.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; }

/* ---------- Shadow ---------- */
.shadow-sm   { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow      { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1); }
.shadow-md   { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.shadow-lg   { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.shadow-2xl  { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.shadow-blue-500\/10  { box-shadow: 0 10px 15px -3px rgba(59,130,246,.1); }
.shadow-blue-500\/20  { box-shadow: 0 4px 6px -1px rgba(59,130,246,.2); }
.shadow-green-400\/60 { box-shadow: 0 4px 6px -1px rgba(74,222,128,.6); }
.shadow-purple-500\/10{ box-shadow: 0 4px 6px -1px rgba(168,85,247,.1); }
.shadow-purple-500\/20{ box-shadow: 0 4px 6px -1px rgba(168,85,247,.2); }
.drop-shadow-sm       { filter: drop-shadow(0 1px 1px rgba(0,0,0,.05)); }

/* ---------- Ring / Focus ---------- */
.outline-none        { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px; }
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:border-transparent:focus { border-color: transparent; }

/* ---------- Opacity ---------- */
.opacity-0   { opacity: 0; }
.opacity-30  { opacity: 0.3; }
.opacity-50  { opacity: 0.5; }
.opacity-70  { opacity: 0.7; }
.opacity-100 { opacity: 1; }

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

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

/* ---------- Pointer Events ---------- */
.pointer-events-none { pointer-events: none; }

/* ---------- Cursor ---------- */
.cursor-pointer      { cursor: pointer; }
.cursor-not-allowed  { cursor: not-allowed; }

/* ---------- User Select ---------- */
.select-none { user-select: none; }

/* ---------- Transform ---------- */
.transform        { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) skewX(var(--tw-skew-x,0)) skewY(var(--tw-skew-y,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.-translate-x-1\/2{ --tw-translate-x: -50%; transform: translateX(-50%) translateY(var(--tw-translate-y,0)); }
.-translate-y-1\/2{ --tw-translate-y: -50%; transform: translateX(var(--tw-translate-x,0)) translateY(-50%); }
.-rotate-90       { transform: rotate(-90deg); }
.-rotate-45       { transform: rotate(-45deg); }

/* ---------- Transition & Animation ---------- */
.transition         { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter; transition-duration: 150ms; }
.transition-all     { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.transition-colors  { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke; transition-duration: 150ms; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; }
.transition-shadow  { transition-property: box-shadow; }
.duration-150       { transition-duration: 150ms; }
.duration-200       { transition-duration: 200ms; }
.duration-300       { transition-duration: 300ms; }
.duration-500       { transition-duration: 500ms; }
.ease-in-out        { transition-timing-function: cubic-bezier(.4,0,.2,1); }

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.delay-150  { animation-delay: 150ms; }
.delay-300  { animation-delay: 300ms; }
.delay-500  { animation-delay: 500ms; }
.delay-700  { animation-delay: 700ms; }
.delay-1000 { animation-delay: 1000ms; }

/* ---------- Backdrop Blur ---------- */
.backdrop-blur-sm   { backdrop-filter: blur(4px); }
.backdrop-blur-2xl  { backdrop-filter: blur(40px); }

/* ---------- Blur ---------- */
.blur-sm   { filter: blur(4px); }
.blur-lg   { filter: blur(16px); }
.blur-xl   { filter: blur(24px); }
.blur-2xl  { filter: blur(40px); }
.blur-3xl  { filter: blur(64px); }

/* ---------- Hover States ---------- */
.hover\:text-blue-300:hover   { color: #93c5fd; }
.hover\:text-blue-400:hover   { color: #60a5fa; }
.hover\:text-blue-600:hover   { color: #2563eb; }
.hover\:text-blue-700:hover   { color: #1d4ed8; }
.hover\:text-green-200:hover  { color: #bbf7d0; }
.hover\:text-green-400:hover  { color: #4ade80; }
.hover\:text-gray-800:hover   { color: #1f2937; }
.hover\:text-slate-900:hover  { color: #0f172a; }
.hover\:text-emerald-800:hover{ color: #065f46; }
.hover\:bg-white\/10:hover    { background-color: rgba(255,255,255,.1); }
.hover\:bg-white\/20:hover    { background-color: rgba(255,255,255,.2); }
.hover\:bg-\[\#4a4190\]:hover { background-color: #4a4190; }
.hover\:bg-gray-200:hover     { background-color: #e5e7eb; }
.hover\:bg-purple-500\/20:hover{ background-color: rgba(168,85,247,.2); }
.hover\:bg-emerald-200:hover  { background-color: #a7f3d0; }
.hover\:bg-emerald-300:hover  { background-color: #6ee7b7; }
.hover\:bg-blue-700:hover     { background-color: #1d4ed8; }
.hover\:bg-indigo-700:hover   { background-color: #4338ca; }
.hover\:bg-amber-600:hover    { background-color: #d97706; }
.hover\:bg-orange-600:hover   { background-color: #ea580c; }
.hover\:border-white\/30:hover  { border-color: rgba(255,255,255,.3); }
.hover\:border-blue-400\/50:hover { border-color: rgba(96,165,250,.5); }
.hover\:border-green-400\/50:hover{ border-color: rgba(74,222,128,.5); }
.hover\:border-purple-400\/60:hover { border-color: rgba(192,132,252,.6); }
.hover\:border-slate-400:hover  { border-color: #94a3b8; }
.hover\:shadow-md:hover   { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.hover\:shadow-lg:hover   { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.hover\:shadow-xl:hover   { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.hover\:shadow-2xl:hover  { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.hover\:shadow-blue-500\/20:hover { box-shadow: 0 10px 15px -3px rgba(59,130,246,.2); }
.hover\:shadow-blue-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(59,130,246,.3); }
.hover\:shadow-purple-500\/10:hover{ box-shadow: 0 4px 6px -1px rgba(168,85,247,.1); }
.hover\:shadow-purple-500\/20:hover{ box-shadow: 0 4px 6px -1px rgba(168,85,247,.2); }
.hover\:scale-105:hover   { transform: scale(1.05); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.hover\:opacity-100:hover  { opacity: 1; }
.group:hover .group-hover\:opacity-100  { opacity: 1; }
.group:hover .group-hover\:text-green-200 { color: #bbf7d0; }
.group:hover .group-hover\:text-blue-700  { color: #1d4ed8; }
.group:hover .group-hover\:text-gray-800  { color: #1f2937; }
.group:hover .group-hover\:text-emerald-800 { color: #065f46; }
.group:hover .group-hover\:shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:opacity-100  { opacity: 1; }
.group:hover .group-hover\:from-emerald-200 { --tw-gradient-from: #a7f3d0; }
.group:hover .group-hover\:to-green-300   { --tw-gradient-to: #86efac; }

/* ---------- Responsive Breakpoints ---------- */
@media (min-width: 640px) {
  .sm\:hidden            { display: none; }
  .sm\:block             { display: block; }
  .sm\:flex              { display: flex; }
  .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\:items-center      { align-items: center; }
  .sm\:gap-4             { gap: 1rem; }
  .sm\:w-auto            { width: auto; }
  .sm\:px-3              { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:px-6              { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:h-\[320px\]       { height: 320px; }
  .sm\:col-span-3        { grid-column: span 3 / span 3; }
}

@media (min-width: 768px) {
  .md\:hidden            { display: none; }
  .md\:block             { display: block; }
  .md\:flex              { display: flex; }
  .md\:grid              { display: grid; }
  .md\:flex-row          { flex-direction: row; }
  .md\:flex-col          { flex-direction: column; }
  .md\:grid-cols-2       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3       { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:items-center      { align-items: center; }
  .md\:items-start       { align-items: flex-start; }
  .md\:justify-between   { justify-content: space-between; }
  .md\:self-auto         { align-self: auto; }
  .md\:gap-3             { gap: 0.75rem; }
  .md\:gap-6             { gap: 1.5rem; }
  .md\:h-auto            { height: auto; }
  .md\:w-12              { width: 3rem; }
  .md\:w-20              { width: 5rem; }
  .md\:h-12              { height: 3rem; }
  .md\:h-20              { height: 5rem; }
  .md\:w-8               { width: 2rem; }
  .md\:h-8               { height: 2rem; }
  .md\:w-16              { width: 4rem; }
  .md\:h-16              { height: 4rem; }
  .md\:w-6               { width: 1.5rem; }
  .md\:h-6               { height: 1.5rem; }
  .md\:rounded-2xl       { border-radius: 1rem; }
  .md\:ml-3              { margin-left: 0.75rem; }
  .md\:ml-12             { margin-left: 3rem; }
  .md\:mt-0              { margin-top: 0; }
  .md\:mb-0              { margin-bottom: 0; }
  .md\:mb-6              { margin-bottom: 1.5rem; }
  .md\:mb-8              { margin-bottom: 2rem; }
  .md\:mb-12             { margin-bottom: 3rem; }
  .md\:mb-3              { margin-bottom: 0.75rem; }
  .md\:p-6               { padding: 1.5rem; }
  .md\:p-8               { padding: 2rem; }
  .md\:p-10              { padding: 2.5rem; }
  .md\:p-12              { padding: 3rem; }
  .md\:px-4              { padding-left: 1rem; padding-right: 1rem; }
  .md\:px-6              { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-2\.5           { padding-top: 0.625rem; padding-bottom: 0.625rem; }
  .md\:py-3              { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:pl-6              { padding-left: 1.5rem; }
  .md\:pt-0              { padding-top: 0; }
  .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-4xl          { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl          { font-size: 3rem; line-height: 1; }
  .md\:text-base         { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-sm           { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-lg           { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:min-h-\[48px\]    { min-height: 48px; }
  .md\:gap-4             { gap: 1rem; }
}

@media (min-width: 1024px) {
  .lg\:hidden            { display: none; }
  .lg\:flex              { display: flex; }
  .lg\:grid-cols-3       { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4       { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-6       { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-2        { grid-column: span 2 / span 2; }
  .lg\:col-span-3        { grid-column: span 3 / span 3; }
  .lg\:items-center      { align-items: center; }
  .lg\:px-8              { padding-left: 2rem; padding-right: 2rem; }
  .lg\:p-12              { padding: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:hidden            { display: none; }
  .xl\:flex              { display: flex; }
  .xl\:items-center      { align-items: center; }
  .xl\:flex-1            { flex: 1 1 0%; }
}

/* ---------- Scrollbar (language dropdown) ---------- */
#languageDropdown {
  scrollbar-width: thin;
  scrollbar-color: rgba(168,85,247,.6) transparent;
}
#languageDropdown::-webkit-scrollbar { width: 6px; }
#languageDropdown::-webkit-scrollbar-thumb { background: rgba(168,85,247,.6); border-radius: 10px; }
#languageDropdown::-webkit-scrollbar-track { background: transparent; }

/* ---------- Troubleshooting prose styles ---------- */
.troubleshooting-content h1 { font-size: 2rem; font-weight: 700; margin: 1rem 0; }
.troubleshooting-content h2 { font-size: 1.5rem; font-weight: 700; margin: 1rem 0; }
.troubleshooting-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1rem 0; }
.troubleshooting-content p  { margin: 0.75rem 0; }
.troubleshooting-content ul { list-style: disc; padding-left: 1.5rem; margin: 0.75rem 0; }
.troubleshooting-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }