/* Tailwind CSS Custom Build - Only classes used in this project */

/* Reset and Base Styles */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    line-height: inherit;
}

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

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

/* Utility Classes */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-10 { top: 2.5rem; }
.top-50\% { top: 50%; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.left-2 { left: 0.5rem; }
.left-10 { left: 2.5rem; }
.right-0 { right: 0; }

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

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.h-full { height: 100%; }
.h-2 { height: 0.5rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }

.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)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:p-8 { padding: 2rem; }
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.space-y-0 > * + * { margin-top: 0; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

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

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-800 { border-color: rgb(31, 41, 55); }

.bg-gray-900 { background-color: rgb(17, 24, 39); }
.bg-gray-950 { background-color: rgb(3, 7, 18); }
.bg-gray-800 { background-color: rgb(31, 41, 55); }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-700 { background-color: rgb(55, 65, 81); }
.bg-gray-900\/95 { background-color: rgba(17, 24, 39, 0.95); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.ml-1 { margin-left: 0.25rem; }
.mr-1 { margin-right: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

.rounded { border-radius: 0.25rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.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; }

.max-w-\[200px\] { max-width: 200px; }
.truncate { 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.font-bold { font-weight: 700; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.text-white { color: rgb(255, 255, 255); }
.text-gray-100 { color: rgb(243, 244, 246); }
.text-gray-300 { color: rgb(209, 213, 219); }
.text-gray-400 { color: rgb(156, 163, 175); }
.text-gray-500 { color: rgb(107, 114, 128); }
.text-gray-800 { color: rgb(31, 41, 55); }

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

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

.text-transparent { color: transparent; }
.bg-clip-text { 
    -webkit-background-clip: text;
    background-clip: text;
}
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-blue-400 { --tw-gradient-from: rgb(96, 165, 250); --tw-gradient-to: rgba(96, 165, 250, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-emerald-400 { --tw-gradient-to: rgb(52, 211, 153); }

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

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

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

.hover\:text-blue-400:hover { color: rgb(96, 165, 250); }

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

.appearance-none { -webkit-appearance: none; appearance: none; }

.cursor-pointer { cursor: pointer; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }

.aspect-video { aspect-ratio: 16 / 9; }

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

.min-w-\[45px\] { min-width: 45px; }
.min-w-\[50px\] { min-width: 50px; }

.text-\[10px\] { font-size: 10px; }

