/**
 * Tailwind Utilities for index.php
 * Extracted and optimized from CDN runtime to reduce ~300KB to ~15KB
 * Only includes classes actually used in the Neo Module Section
 */

/* =========================================
   Base & Box Sizing
   ========================================= */
.neo-module-section *,
.neo-module-section *::before,
.neo-module-section *::after {
    box-sizing: border-box;
}

/* =========================================
   Layout Utilities
   ========================================= */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

/* Display & Flex */
.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-grow {
    flex-grow: 1;
}

.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;
}

/* Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Gap */
.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;
}

@media (min-width: 640px) {
    .sm\:gap-8 {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .md\:gap-32 {
        gap: 8rem;
    }
}

@media (min-width: 1024px) {
    .lg\:gap-3 {
        gap: 0.75rem;
    }
}

/* =========================================
   Spacing & Sizing
   ========================================= */
/* Width */
.w-full {
    width: 100%;
}

.w-1 {
    width: 0.25rem;
}

.w-1\.5 {
    width: 0.375rem;
}

.w-2 {
    width: 0.5rem;
}

.w-2\.5 {
    width: 0.625rem;
}

.w-3 {
    width: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.w-7 {
    width: 1.75rem;
}

.w-9 {
    width: 2.25rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-1\/2 {
    width: 50%;
}

.w-2\/3 {
    width: 66.666667%;
}

.w-3\/4 {
    width: 75%;
}

/* Height */
.h-full {
    height: 100%;
}

.h-0\.5 {
    height: 0.125rem;
}

.h-1 {
    height: 0.25rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-5 {
    height: 1.25rem;
}

.h-7 {
    height: 1.75rem;
}

.h-9 {
    height: 2.25rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-1\/2 {
    height: 50%;
}

/* Padding */
.p-6 {
    padding: 1.5rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .md\:pt-24 {
        padding-top: 6rem;
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Margin */
.m-0 {
    margin: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mr-0\.5 {
    margin-right: 0.125rem;
}

.ml-0\.5 {
    margin-left: 0.125rem;
}

.mt-8 {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .md\:mb-\[69px\] {
        margin-bottom: 69px;
    }

    .md\:mt-12 {
        margin-top: 3rem;
    }
}

/* Position Offsets */
.top-0 {
    top: 0;
}

.top-2 {
    top: 0.5rem;
}

.top-1\/2 {
    top: 50%;
}

.bottom-2 {
    bottom: 0.5rem;
}

.bottom-3 {
    bottom: 0.75rem;
}

.left-0 {
    left: 0;
}

.left-2 {
    left: 0.5rem;
}

.left-1\/2 {
    left: 50%;
}

.right-0 {
    right: 0;
}

.right-2 {
    right: 0.5rem;
}

.right-3 {
    right: 0.75rem;
}

.-top-1 {
    top: -0.25rem;
}

.-top-3 {
    top: -0.75rem;
}

.-top-4 {
    top: -1rem;
}

.-right-2 {
    right: -0.5rem;
}

.-right-3 {
    right: -0.75rem;
}

.-bottom-1 {
    bottom: -0.25rem;
}

.-bottom-2 {
    bottom: -0.5rem;
}

.-left-2 {
    left: -0.5rem;
}

.-left-3 {
    left: -0.75rem;
}

/* Transform - Using CSS custom properties for composability */
*,
*::before,
*::after {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.origin-bottom-left {
    transform-origin: bottom left;
}

/* =========================================
   Typography
   ========================================= */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Font Size */
.text-\[8px\] {
    font-size: 8px;
}

.text-\[9px\] {
    font-size: 9px;
}

.text-\[10px\] {
    font-size: 10px;
}

.text-\[13px\] {
    font-size: 13px;
}

.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-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

@media (min-width: 640px) {
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Font Weight */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Font Family */
.font-sans {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

.font-mono {
    font-family: 'Outfit', sans-serif;
}

/* Tracking & Leading */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .md\:tracking-\[0\.2em\] {
        letter-spacing: 0.2em;
    }
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

/* =========================================
   Colors
   ========================================= */
/* Background */
.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-100 {
    background-color: #f1f5f9;
}

.bg-slate-200 {
    background-color: #e2e8f0;
}

.bg-slate-800 {
    background-color: #1e293b;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.bg-slate-950 {
    background-color: #020617;
}

.bg-black\/10 {
    background-color: rgb(0 0 0 / 0.1);
}

.bg-white\/70 {
    background-color: rgb(255 255 255 / 0.7);
}

.bg-current {
    background-color: currentColor;
}

/* Group Hover Background */
.group:hover .group-hover\:bg-green-300 {
    background-color: #86efac;
}

.group:hover .group-hover\:bg-green-400 {
    background-color: #4ade80;
}

.group:hover .group-hover\:bg-green-500 {
    background-color: #22c55e;
}

.group:hover .group-hover\:bg-yellow-300 {
    background-color: #fde047;
}

.group:hover .group-hover\:bg-yellow-400 {
    background-color: #facc15;
}

.group:hover .group-hover\:bg-blue-100 {
    background-color: #dbeafe;
}

.group:hover .group-hover\:bg-blue-400 {
    background-color: #60a5fa;
}

.group:hover .group-hover\:bg-blue-500 {
    background-color: #3b82f6;
}

.group:hover .group-hover\:bg-blue-600 {
    background-color: #2563eb;
}

.group:hover .group-hover\:bg-purple-300 {
    background-color: #d8b4fe;
}

.group:hover .group-hover\:bg-orange-300 {
    background-color: #fdba74;
}

.group:hover .group-hover\:bg-orange-400 {
    background-color: #fb923c;
}

.group:hover .group-hover\:bg-orange-500 {
    background-color: #f97316;
}

.group:hover .group-hover\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
}

/* anim-active states (mobile) */
.group.anim-active .group-\[\.anim-active\]\:bg-green-300 {
    background-color: #86efac;
}

.group.anim-active .group-\[\.anim-active\]\:bg-green-400 {
    background-color: #4ade80;
}

.group.anim-active .group-\[\.anim-active\]\:bg-green-500 {
    background-color: #22c55e;
}

.group.anim-active .group-\[\.anim-active\]\:bg-yellow-300 {
    background-color: #fde047;
}

.group.anim-active .group-\[\.anim-active\]\:bg-yellow-400 {
    background-color: #facc15;
}

.group.anim-active .group-\[\.anim-active\]\:bg-blue-100 {
    background-color: #dbeafe;
}

.group.anim-active .group-\[\.anim-active\]\:bg-blue-400 {
    background-color: #60a5fa;
}

.group.anim-active .group-\[\.anim-active\]\:bg-blue-500 {
    background-color: #3b82f6;
}

.group.anim-active .group-\[\.anim-active\]\:bg-blue-600 {
    background-color: #2563eb;
}

.group.anim-active .group-\[\.anim-active\]\:bg-purple-300 {
    background-color: #d8b4fe;
}

.group.anim-active .group-\[\.anim-active\]\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
}

.group.anim-active .group-\[\.anim-active\]\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
}

.group.anim-active .group-\[\.anim-active\]\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
}

.group.anim-active .group-\[\.anim-active\]\:bg-orange-300 {
    background-color: #fdba74;
}

.group.anim-active .group-\[\.anim-active\]\:bg-orange-400 {
    background-color: #fb923c;
}

.group.anim-active .group-\[\.anim-active\]\:bg-orange-500 {
    background-color: #f97316;
}

.group.anim-active .group-\[\.anim-active\]\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
}

/* Gradient Backgrounds */
.group:hover .group-hover\:bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.group:hover .group-hover\:from-yellow-400 {
    --tw-gradient-from: #facc15;
    --tw-gradient-to: rgb(250 204 21 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.group:hover .group-hover\:via-pink-500 {
    --tw-gradient-to: rgb(236 72 153 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to);
}

.group:hover .group-hover\:to-purple-500 {
    --tw-gradient-to: #a855f7;
}

.group.anim-active .group-\[\.anim-active\]\:bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.group.anim-active .group-\[\.anim-active\]\:from-yellow-400 {
    --tw-gradient-from: #facc15;
    --tw-gradient-to: rgb(250 204 21 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.group.anim-active .group-\[\.anim-active\]\:via-pink-500 {
    --tw-gradient-to: rgb(236 72 153 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to);
}

.group.anim-active .group-\[\.anim-active\]\:to-purple-500 {
    --tw-gradient-to: #a855f7;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-to: rgb(15 23 42 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.group:hover .group-hover\:from-orange-400\/50 {
    --tw-gradient-from: rgb(251 146 60 / 0.5);
    --tw-gradient-to: rgb(251 146 60 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.group.anim-active .group-\[\.anim-active\]\:from-orange-400\/50 {
    --tw-gradient-from: rgb(251 146 60 / 0.5);
    --tw-gradient-to: rgb(251 146 60 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

/* Text Colors */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-slate-100 {
    color: #f1f5f9;
}

.text-slate-200 {
    color: #e2e8f0;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-blue-200 {
    color: #bfdbfe;
}

/* Group Hover/Active for text-blue-200 */
.group:hover .group-hover\:text-blue-200 {
    color: #bfdbfe;
}

.group:active .group-active\:text-blue-200 {
    color: #bfdbfe;
}

.group.anim-active .group-\[\.anim-active\]\:text-blue-200 {
    color: #bfdbfe;
}


.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-950 {
    color: #020617;
}

/* Group Hover/Active Text Colors for SVG */
.group:hover .group-hover\:text-blue-100 {
    color: #dbeafe;
}

.group:hover .group-hover\:text-purple-300 {
    color: #d8b4fe;
}

.group:active .group-active\:text-blue-100 {
    color: #dbeafe;
}

.group:active .group-active\:text-purple-300 {
    color: #d8b4fe;
}

.group.anim-active .group-\[\.anim-active\]\:text-blue-100 {
    color: #dbeafe;
}

.group.anim-active .group-\[\.anim-active\]\:text-purple-300 {
    color: #d8b4fe;
}


/* Group Hover Text Colors */
.group:hover .group-hover\:text-green-700 {
    color: #15803d;
}

.group:hover .group-hover\:text-yellow-600 {
    color: #ca8a04;
}

.group:hover .group-hover\:text-blue-300 {
    color: #93c5fd;
}

.group:hover .group-hover\:text-blue-500 {
    color: #3b82f6;
}

.group:hover .group-hover\:text-pink-500 {
    color: #ec4899;
}

.group:hover .group-hover\:text-gray-800 {
    color: #1f2937;
}

.group:hover .group-hover\:text-yellow-500 {
    color: #eab308;
}

.group.anim-active .group-\[\.anim-active\]\:text-green-700 {
    color: #15803d;
}

.group.anim-active .group-\[\.anim-active\]\:text-yellow-600 {
    color: #ca8a04;
}

.group.anim-active .group-\[\.anim-active\]\:text-blue-300 {
    color: #93c5fd;
}

.group.anim-active .group-\[\.anim-active\]\:text-blue-500 {
    color: #3b82f6;
}

.group.anim-active .group-\[\.anim-active\]\:text-pink-500 {
    color: #ec4899;
}

.group.anim-active .group-\[\.anim-active\]\:text-gray-800 {
    color: #1f2937;
}

.group.anim-active .group-\[\.anim-active\]\:text-yellow-500 {
    color: #eab308;
}

/* Fill Colors */
.fill-slate-950 {
    fill: #020617;
}

.group:hover .group-hover\:fill-yellow-500 {
    fill: #eab308;
}

.group.anim-active .group-\[\.anim-active\]\:fill-yellow-500 {
    fill: #eab308;
}

/* =========================================
   Borders & Opacity
   ========================================= */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-solid {
    border-style: solid;
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

.border-transparent {
    border-color: transparent;
}

.group:hover .group-hover\:border-slate-300 {
    border-color: #cbd5e1;
}

.group:hover .group-hover\:border-orange-300 {
    border-color: #fdba74;
}

.group.anim-active .group-\[\.anim-active\]\:border-orange-300 {
    border-color: #fdba74;
}

.group:hover .group-hover\:\!bg-slate-50 {
    background-color: #f8fafc !important;
}

.group:hover .group-hover\:\!border-slate-200 {
    border-color: #e2e8f0 !important;
}

.group:hover .group-hover\:\!text-slate-500 {
    color: #64748b !important;
}

/* Rounded */
.rounded-sm {
    border-radius: 0.125rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-t-sm {
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
}

.rounded-bl-none {
    border-bottom-left-radius: 0;
}

/* Opacity */
.opacity-20 {
    opacity: 0.2;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

/* =========================================
   Effects & Filters
   ========================================= */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.group:hover .group-hover\:shadow-blue-500\/50 {
    --tw-shadow-color: rgb(59 130 246 / 0.5);
    --tw-shadow: var(--tw-shadow-colored);
}

.blur-sm {
    filter: blur(4px);
}

.overflow-hidden {
    overflow: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-default {
    cursor: default;
}

/* =========================================
   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-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

/* =========================================
   Animations
   ========================================= */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ping-large {

    75%,
    100% {
        transform: scale(5);
        opacity: 0;
    }
}

.animate-ping-large {
    animation: ping-large 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* =========================================
   Group Hover Scale
   ========================================= */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group.anim-active .group-\[\.anim-active\]\:scale-105 {
    transform: scale(1.05);
}

/* =========================================
   Screen Reader Only
   ========================================= */
.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;
}

/* =========================================
   Selection
   ========================================= */
.selection\:bg-blue-100 *::selection {
    background-color: #dbeafe;
}

/* =========================================
   No Underline (Link Override)
   ========================================= */
.no-underline {
    text-decoration: none;
}

.hover\:no-underline:hover {
    text-decoration: none;
}

/* =========================================
   Additional Missing Classes
   ========================================= */
/* Inset */
.inset-0\.5 {
    top: 0.125rem;
    right: 0.125rem;
    bottom: 0.125rem;
    left: 0.125rem;
}

/* Whitespace */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Group Active States (touch/click) */
.group:active .group-active\:bg-green-300 {
    background-color: #86efac;
}

.group:active .group-active\:bg-green-400 {
    background-color: #4ade80;
}

.group:active .group-active\:bg-green-500 {
    background-color: #22c55e;
}

.group:active .group-active\:bg-yellow-300 {
    background-color: #fde047;
}

.group:active .group-active\:bg-yellow-400 {
    background-color: #facc15;
}

.group:active .group-active\:bg-blue-400 {
    background-color: #60a5fa;
}

.group:active .group-active\:bg-blue-500 {
    background-color: #3b82f6;
}

.group:active .group-active\:bg-blue-600 {
    background-color: #2563eb;
}

.group:active .group-active\:bg-orange-300 {
    background-color: #fdba74;
}

.group:active .group-active\:bg-orange-400 {
    background-color: #fb923c;
}

.group:active .group-active\:bg-orange-500 {
    background-color: #f97316;
}

.group:active .group-active\:bg-orange-50\/50 {
    background-color: rgb(255 247 237 / 0.5);
}

.group:active .group-active\:bg-purple-300 {
    background-color: #d8b4fe;
}

/* Group Active Gradient */
.group:active .group-active\:bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.group:active .group-active\:from-yellow-400 {
    --tw-gradient-from: #facc15;
    --tw-gradient-to: rgb(250 204 21 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.group:active .group-active\:via-pink-500 {
    --tw-gradient-to: rgb(236 72 153 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to);
}

.group:active .group-active\:to-purple-500 {
    --tw-gradient-to: #a855f7;
}

.group:active .group-active\:from-orange-400\/50 {
    --tw-gradient-from: rgb(251 146 60 / 0.5);
    --tw-gradient-to: rgb(251 146 60 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

/* Group Active Text Colors */
.group:active .group-active\:text-green-700 {
    color: #15803d;
}

.group:active .group-active\:text-yellow-600 {
    color: #ca8a04;
}

.group:active .group-active\:text-blue-300 {
    color: #93c5fd;
}

.group:active .group-active\:text-blue-500 {
    color: #3b82f6;
}

.group:active .group-active\:text-pink-500 {
    color: #ec4899;
}

.group:active .group-active\:text-gray-800 {
    color: #1f2937;
}

.group:active .group-active\:text-yellow-500 {
    color: #eab308;
}

/* Group Active Border */
.group:active .group-active\:border-orange-300 {
    border-color: #fdba74;
}

/* Group Active Fill */
.group:active .group-active\:fill-yellow-500 {
    fill: #eab308;
}

/* Group Hover Purple Background (missing variants) */
.group:hover .group-hover\:bg-purple-400\/50 {
    background-color: rgb(192 132 252 / 0.5);
}

.group:hover .group-hover\:bg-purple-400\/30 {
    background-color: rgb(192 132 252 / 0.3);
}

.group:hover .group-hover\:bg-purple-400\/40 {
    background-color: rgb(192 132 252 / 0.4);
}

/* Left/Right positional offsets (extra) */
.left-\[30\%\] {
    left: 30%;
}

.right-\[30\%\] {
    right: 30%;
}

.top-\[35\%\] {
    top: 35%;
}

.bottom-\[35\%\] {
    bottom: 35%;
}