*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.fixed { position: fixed; }
.left-0 { left: 0; }
.top-0 { top: 0; }
.top-\[36px\] { top: 36px; }
.z-50 { z-index: 50; }
.z-\[51\] { z-index: 51; }

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

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.h-10 { height: 2.5rem; }
.min-h-screen { min-height: 100vh; }

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }

.p-2 { padding: 0.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gray-200 { border-color: rgb(229 231 235); }
.border-gray-700 { border-color: rgb(55 65 81); }
.border-slate-200 { border-color: rgb(226 232 240); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }

.bg-slate-50 { background-color: rgb(248 250 252); }
.bg-slate-950 { background-color: rgb(2 6 23); }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }

.text-center { text-align: center; }
.break-all { word-break: break-all; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-8 { line-height: 2rem; }

.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-white { color: #ffffff; }
.text-primary { color: var(--primary); }
.text-amber-500 { color: rgb(245 158 11); }
.text-cyan-300 { color: rgb(103 232 249); }
.text-cyan-500 { color: rgb(6 182 212); }
.text-emerald-600 { color: rgb(5 150 105); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.text-gray-900 { color: rgb(17 24 39); }
.text-orange-300 { color: rgb(253 186 116); }
.text-orange-500 { color: rgb(249 115 22); }
.text-sky-600 { color: rgb(2 132 199); }
.text-slate-300 { color: rgb(203 213 225); }
.text-slate-600 { color: rgb(71 85 105); }
.text-slate-900 { color: rgb(15 23 42); }

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.12), 0 8px 10px -6px rgb(15 23 42 / 0.1);
}

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

.backdrop-blur-lg {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.transition-transform {
    transition-property: transform;
}

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

.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.focus\:ring-primary:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.hover\:bg-gray-200:hover {
    background-color: rgb(229 231 235);
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:text-cyan-300:hover {
    color: rgb(103 232 249);
}

.hover\:scale-105:hover,
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.hover\:drop-shadow-\[0_0_8px_var\(--primary\)\]:hover,
.group:hover .group-hover\:drop-shadow-\[0_0_8px_var\(--primary\)\] {
    filter: drop-shadow(0 0 8px var(--primary));
}

.group:hover .group-hover\:text-gray-900 {
    color: rgb(17 24 39);
}

@media (min-width: 640px) {
    .sm\:hidden { display: none !important; }
    .sm\:block { display: block !important; }
    .sm\:inline { display: inline !important; }

    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .md\:hidden { display: none !important; }
    .md\:block { display: block !important; }
    .md\:flex { display: flex !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:p-10 { padding: 2.5rem; }

    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { margin-left: 2.5rem; }
    .lg\:p-10 { padding: 2.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:grid-cols-\[1\.05fr_1\.35fr\] { grid-template-columns: 1.05fr 1.35fr; }

    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1328px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }
}
