/*
 * tailwind-used.css
 * Minimal set of Tailwind utility classes actually used across this site.
 * Replaces the Tailwind CDN runtime script to eliminate a major render-blocking resource.
 * Generated from scanning: index.html, grid.html, girls.html, camsoda.js, and tag-template.html
 */

/* ============================================================
   DISPLAY / LAYOUT
   ============================================================ */
.flex {
    display: flex !important;
}

.hidden {
    display: none !important;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.grid {
    display: grid !important;
}

.contents {
    display: contents !important;
}

/* ============================================================
   FLEX UTILITIES
   ============================================================ */
.flex-col {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-1 {
    flex: 1 1 0% !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.items-center {
    align-items: center !important;
}

.items-start {
    align-items: flex-start !important;
}

.items-end {
    align-items: flex-end !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.gap-6 {
    gap: 1.5rem !important;
}

.gap-2\.5 {
    gap: 0.625rem;
}

/* ============================================================
   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;
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .sm\:flex-row {
        flex-direction: row !important;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:items-end {
        align-items: flex-end !important;
    }

    .md\:items-center {
        align-items: center !important;
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2 !important;
    }

    .md\:col-span-3 {
        grid-column: span 3 / span 3 !important;
    }

    .md\:text-left {
        text-align: left !important;
    }

    .md\:text-5xl {
        font-size: 3rem !important;
        line-height: 1 !important;
    }

    .md\:justify-start {
        justify-content: flex-start !important;
    }

    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:text-4xl {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
    }

    .md\:text-base {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    .md\:h-96 {
        height: 24rem !important;
    }

    .md\:h-40 {
        height: 10rem !important;
    }

    .md\:w-40 {
        width: 10rem !important;
    }

    .md\:p-8 {
        padding: 2rem !important;
    }

    .md\:left-8 {
        left: 2rem !important;
    }

    .md\:right-8 {
        right: 2rem !important;
    }

    .md\:bottom-24 {
        bottom: 6rem !important;
    }

    .md\:text-base {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    .md\:justify-center {
        justify-content: center !important;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .lg\:text-6xl {
        font-size: 3.75rem !important;
        line-height: 1 !important;
    }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* ============================================================
   POSITION
   ============================================================ */
.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.fixed {
    position: fixed !important;
}

.sticky {
    position: sticky !important;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0 !important;
}

.inset-x-0 {
    left: 0;
    right: 0 !important;
}

.top-0 {
    top: 0 !important;
}

.top-3 {
    top: 0.75rem !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-3 {
    bottom: 0.75rem !important;
}

.bottom-20 {
    bottom: 5rem !important;
}

.bottom-16 {
    bottom: 4rem !important;
}

.left-0 {
    left: 0 !important;
}

.left-3 {
    left: 0.75rem !important;
}

.left-4 {
    left: 1rem !important;
}

.left-50 {
    left: 50% !important;
}

.right-0 {
    right: 0 !important;
}

.right-3 {
    right: 0.75rem !important;
}

.right-4 {
    right: 1rem !important;
}

.right-\[40px\] {
    right: 40px !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-20 {
    z-index: 20 !important;
}

.z-30 {
    z-index: 30 !important;
}

.z-50 {
    z-index: 50 !important;
}

.top-1\/2 {
    top: 50% !important;
}

/* ============================================================
   SIZE
   ============================================================ */
.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.w-2 {
    width: 0.5rem !important;
}

.h-2 {
    height: 0.5rem !important;
}

.w-3 {
    width: 0.75rem !important;
}

.h-3 {
    height: 0.75rem !important;
}

.w-7 {
    width: 1.75rem !important;
}

.h-7 {
    height: 1.75rem !important;
}

.w-10 {
    width: 2.5rem !important;
}

.h-10 {
    height: 2.5rem !important;
}

.w-14 {
    width: 3.5rem !important;
}

.h-14 {
    height: 3.5rem !important;
}

.w-20 {
    width: 5rem !important;
}

.h-20 {
    height: 5rem !important;
}

.w-32 {
    width: 8rem !important;
}

.h-32 {
    height: 8rem !important;
}

.w-48 {
    width: 12rem !important;
}

.h-48 {
    height: 12rem !important;
}

.h-2\/3 {
    height: 66.666667% !important;
}

.h-64 {
    height: 16rem !important;
}

.h-72 {
    height: 18rem !important;
}

.h-80 {
    height: 20rem !important;
}

.h-6 {
    height: 1.5rem !important;
}

.h-64 {
    height: 16rem !important;
}

.h-96 {
    height: 24rem !important;
}

.max-w-\[70\%\] {
    max-width: 70% !important;
}

.max-w-\[1200px\] {
    max-width: 1200px !important;
}

.max-w-\[1400px\] {
    max-width: 1400px !important;
}

.max-w-4xl {
    max-width: 56rem !important;
}

.max-w-3xl {
    max-width: 48rem !important;
}

.max-w-lg {
    max-width: 32rem !important;
}

.min-h-screen {
    min-height: 100vh !important;
}

/* ============================================================
   OVERFLOW
   ============================================================ */
.overflow-hidden {
    overflow: hidden !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap !important;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* ============================================================
   SPACING (Padding)
   ============================================================ */
.p-4 {
    padding: 1rem !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem !important;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem !important;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem !important;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem !important;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem !important;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem !important;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem !important;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem !important;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem !important;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem !important;
}

.pb-24 {
    padding-bottom: 6rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-6 {
    padding-top: 1.5rem !important;
}

/* ============================================================
   SPACING (Margin)
   ============================================================ */
.mx-auto {
    margin-left: auto;
    margin-right: auto !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-10 {
    margin-top: 2.5rem !important;
}

.mt-12 {
    margin-top: 3rem !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

/* ============================================================
   BORDERS
   ============================================================ */
.rounded {
    border-radius: 0.25rem !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

.rounded-xl {
    border-radius: 0.75rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.border {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-t {
    border-top-width: 1px !important;
}

.border-b {
    border-bottom-width: 1px !important;
}

.border-white {
    border-color: #ffffff !important;
}

.border-gray-500\/50 {
    border-color: rgba(107, 114, 128, 0.5) !important;
}

.border-red-500\/50 {
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.border-gray-600 {
    border-color: #4b5563 !important;
}

.border-gray-700 {
    border-color: #374151 !important;
}

.border-gray-800 {
    border-color: #1f2937 !important;
}

.border-pink-500 {
    border-color: #ec4899 !important;
}

.border-transparent {
    border-color: transparent !important;
}

/* ============================================================
   BACKGROUND COLORS
   ============================================================ */
.bg-black {
    background-color: #000000 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-gray-700 {
    background-color: #374151 !important;
}

.bg-gray-800 {
    background-color: #1f2937 !important;
}

.bg-gray-900 {
    background-color: #111827 !important;
}

.bg-red-600 {
    background-color: #dc2626 !important;
}

.bg-pink-600 {
    background-color: #db2777 !important;
}

.bg-\[\#1c2233\] {
    background-color: #1c2233 !important;
}

.bg-\[\#252c41\] {
    background-color: #252c41 !important;
}

.bg-\[\#e3146b\] {
    background-color: #e3146b !important;
}

.bg-opacity-40 {
    --tw-bg-opacity: 0.4;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-opacity-60 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.bg-opacity-90 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Inline opacity classes used in JS templates */
.bg-black.bg-opacity-40 {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.bg-black.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-black.bg-opacity-60 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.bg-red-600.bg-opacity-90 {
    background-color: rgba(220, 38, 38, 0.9) !important;
}

.bg-gray-700.bg-opacity-90 {
    background-color: rgba(55, 65, 81, 0.9) !important;
}

/* Gradients */
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}

.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
}

.from-black {
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.from-pink-500 {
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.from-pink-600 {
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.from-\[\#fe2c55\] {
    --tw-gradient-from: #fe2c55;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.from-\[\#e3146b\] {
    --tw-gradient-from: #e3146b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.from-\[\#c41159\] {
    --tw-gradient-from: #c41159;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

.via-black\/50 {
    --tw-gradient-via: rgba(0, 0, 0, 0.5);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent) !important;
}

.via-black\/60 {
    --tw-gradient-via: rgba(0, 0, 0, 0.6);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent) !important;
}

.to-transparent {
    --tw-gradient-to: transparent !important;
}

.to-purple-600 {
    --tw-gradient-to: #9333ea !important;
}

.to-purple-700 {
    --tw-gradient-to: #7e22ce !important;
}

.to-red-500 {
    --tw-gradient-to: #ef4444 !important;
}

.to-\[\#c41159\] {
    --tw-gradient-to: #c41159 !important;
}

.hover\:from-pink-600:hover {
    --tw-gradient-from: #db2777 !important;
}

.hover\:to-purple-700:hover {
    --tw-gradient-to: #7e22ce !important;
}

.hover\:from-pink-600:hover {
    --tw-gradient-from: #db2777;
}

.hover\:bg-gray-700:hover {
    background-color: #374151 !important;
}

.hover\:bg-gray-600:hover {
    background-color: #4b5563 !important;
}

.hover\:bg-pink-600:hover {
    background-color: #db2777 !important;
}

.hover\:bg-\[\#252c41\]:hover {
    background-color: #252c41 !important;
}

/* ============================================================
   TEXT COLORS
   ============================================================ */
.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.text-gray-200 {
    color: #e5e7eb !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.text-gray-500 {
    color: #6b7280 !important;
}

.text-green-400 {
    color: #4ade80 !important;
}

.text-pink-400 {
    color: #f472b6 !important;
}

.text-pink-500 {
    color: #ec4899 !important;
}

.text-red-500 {
    color: #ef4444 !important;
}

.text-\[\#e3146b\] {
    color: #e3146b !important;
}

.hover\:text-white:hover {
    color: #fff !important;
}

.hover\:text-white:hover {
    color: #fff;
}

/* ============================================================
   FONT
   ============================================================ */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem !important;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem !important;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem !important;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem !important;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem !important;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem !important;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem !important;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem !important;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-extrabold {
    font-weight: 800 !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.capitalize {
    text-transform: capitalize !important;
}

.uppercase {
    text-transform: uppercase !important;
}

/* ============================================================
   OBJECT FIT
   ============================================================ */
.object-cover {
    -o-object-fit: cover;
    object-fit: cover !important;
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain !important;
}

/* ============================================================
   SHADOW / DROP SHADOW
   ============================================================ */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-\[0_0_15px_rgba\(254\,44\,85\,0\.5\)\] {
    box-shadow: 0 0 15px rgba(254, 44, 85, 0.5) !important;
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
}

.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
}

.drop-shadow {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
}

/* ============================================================
   TRANSITIONS & ANIMATION
   ============================================================ */
.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 !important;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms !important;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms !important;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.duration-500 {
    transition-duration: 500ms !important;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

/* ============================================================
   TRANSFORM
   ============================================================ */
.transform {
    transform: var(--tw-transform) !important;
}

.scale-105 {
    transform: scale(1.05) !important;
}

.hover\:scale-105:hover {
    transform: scale(1.05) !important;
}

.hover\:scale-110:hover {
    transform: scale(1.1) !important;
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05) !important;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1) !important;
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem) !important;
}

.-translate-y-1 {
    transform: translateY(-0.25rem) !important;
}

/* ============================================================
   POINTER EVENTS
   ============================================================ */
.pointer-events-none {
    pointer-events: none !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-pointer {
    cursor: pointer !important;
}

/* ============================================================
   SPACE (space-y)
   ============================================================ */
.space-y-3> :not([hidden])~ :not([hidden]) {
    margin-top: 0.75rem !important;
}

/* ============================================================
   BLUR
   ============================================================ */
.blur-sm {
    filter: blur(4px) !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

/* ============================================================
   ASPECT RATIO
   ============================================================ */
.aspect-video {
    aspect-ratio: 16 / 9 !important;
}

/* ============================================================
   BACKDROP
   ============================================================ */
.backdrop-blur-sm {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px) !important;
}

/* ============================================================
   OUTLINE
   ============================================================ */
.outline-none {
    outline: none !important;
}

/* ============================================================
   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;
}

/* ============================================================
   CUSTOM color: camsoda (from tailwind.config)
   ============================================================ */
.bg-camsoda {
    background-color: #e3146b !important;
}

.text-camsoda {
    color: #e3146b !important;
}

.border-camsoda {
    border-color: #e3146b !important;
}

/* ============================================================
   HOVER UTILS (group)
   ============================================================ */
.group:hover .group-hover\:bg-opacity-30 {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05) !important;
}

.hover\:underline:hover {
    text-decoration: underline !important;
}

.hover\:border-pink-500:hover {
    border-color: #ec4899 !important;
}

.hover\:border-gray-700:hover {
    border-color: #374151 !important;
}