/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Layout utilities */
.bg-black { background-color: #000; }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-black { color: #000; }
.text-transparent { color: transparent; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-20 { top: 5rem; }
.top-40 { top: 10rem; }
.top-1\/4 { top: 25%; }
.bottom-20 { bottom: 5rem; }
.bottom-40 { bottom: 10rem; }
.bottom-1\/4 { bottom: 25%; }
.bottom-8 { bottom: 2rem; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.left-1\/4 { left: 25%; }
.left-1\/2 { left: 50%; }
.right-10 { right: 2.5rem; }
.right-20 { right: 5rem; }
.right-1\/4 { right: 25%; }
.z-10 { z-index: 10; }

/* Transform utilities */
.transform { transform: translateZ(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Sizing */
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-18 { width: 4.5rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.h-1 { height: 0.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-18 { height: 4.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.space-x-3 > * + * { margin-left: 0.75rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

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

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Borders and rounded corners */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }

/* Background utilities */
.bg-white { background-color: #fff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }

/* 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-clip-text { background-clip: text; -webkit-background-clip: text; }

/* Gradient color stops */
.from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }
.to-purple-500 { --tw-gradient-to: #a855f7; }
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.to-gray-300 { --tw-gradient-to: #d1d5db; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }
.from-green-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.to-emerald-500 { --tw-gradient-to: #10b981; }
.from-yellow-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.to-orange-500 { --tw-gradient-to: #f97316; }

/* Gradient with opacity */
.from-pink-500\/20 { --tw-gradient-from: rgba(236, 72, 153, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-purple-500\/20 { --tw-gradient-to: rgba(168, 85, 247, 0.2); }
.from-blue-500\/20 { --tw-gradient-from: rgba(59, 130, 246, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-500\/20 { --tw-gradient-to: rgba(6, 182, 212, 0.2); }
.from-yellow-500\/20 { --tw-gradient-from: rgba(245, 158, 11, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.to-orange-500\/20 { --tw-gradient-to: rgba(249, 115, 22, 0.2); }
.from-green-500\/20 { --tw-gradient-from: rgba(16, 185, 129, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.to-emerald-500\/20 { --tw-gradient-to: rgba(16, 185, 129, 0.2); }
.from-pink-500\/10 { --tw-gradient-from: rgba(236, 72, 153, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-purple-500\/10 { --tw-gradient-to: rgba(168, 85, 247, 0.1); }
.from-blue-500\/10 { --tw-gradient-from: rgba(59, 130, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-500\/10 { --tw-gradient-to: rgba(6, 182, 212, 0.1); }

/* Effects */
.blur-xl { filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.overflow-hidden { overflow: hidden; }

/* Transitions */
.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; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover effects */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:border-pink-500\/30:hover { border-color: rgba(236, 72, 153, 0.3); }
.hover\:border-blue-500\/30:hover { border-color: rgba(59, 130, 246, 0.3); }
.hover\:border-green-500\/30:hover { border-color: rgba(16, 185, 129, 0.3); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-pink-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25); }
.hover\:shadow-purple-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.25); }

/* Group hover effects */
.group:hover .group-hover\:bg-gray-100 { background-color: #f3f4f6; }

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

/* Scrollbar hiding utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Line clamp utilities */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom utility classes */
.min-h-80vh {
    min-height: 80vh;
}

.h-600 {
    height: 600px;
}

.w-320 {
    width: 320px;
}

/* Responsive design */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-8xl { font-size: 6rem; line-height: 1; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Additional utility classes for share page */
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-0\.5 { height: 0.125rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }

/* Additional colors */
.text-gray-500 { color: #6b7280; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-pink-400 { color: #f472b6; }
.text-pink-500 { color: #ec4899; }
.text-purple-500 { color: #a855f7; }
.text-blue-400 { color: #60a5fa; }
.bg-red-500 { background-color: #ef4444; }
.bg-pink-500 { background-color: #ec4899; }
.bg-purple-500 { background-color: #a855f7; }
.bg-gray-900 { background-color: #111827; }
.bg-red-900\/20 { background-color: rgba(127, 29, 29, 0.2); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }

/* Additional borders */
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-transparent { border-color: transparent; }
.border-white { border-color: #fff; }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-pink-400\/40 { border-color: rgba(244, 114, 182, 0.4); }
.border-pink-500 { border-color: #ec4899; }
.border-purple-500 { border-color: #a855f7; }
.border-t-pink-500 { border-top-color: #ec4899; }
.border-r-pink-500 { border-right-color: #ec4899; }
.border-b-purple-500 { border-bottom-color: #a855f7; }
.border-l-purple-500 { border-left-color: #a855f7; }

/* Additional rounded corners */
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }

/* Additional spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pr-16 { padding-right: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }
.-bottom-1 { bottom: -0.25rem; }
.-bottom-2 { bottom: -0.5rem; }

/* Additional flexbox */
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Additional typography */
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.leading-none { line-height: 1; }
.tracking-wide { letter-spacing: 0.025em; }

/* Additional effects */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.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)); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.pointer-events-none { pointer-events: none; }

/* Additional transforms */
.scale-110 { transform: scale(1.1); }
.scale-105 { transform: scale(1.05); }
.active\:scale-95:active { transform: scale(0.95); }

/* Additional hover effects */
.hover\:text-gray-300:hover { color: #d1d5db; }
.hover\:text-pink-300:hover { color: #f9a8d4; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }

/* Additional animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Additional gradients */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black\/70 { --tw-gradient-from: rgba(0, 0, 0, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.2), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.5), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.from-black\/90 { --tw-gradient-from: rgba(0, 0, 0, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-pink-400 { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); }
.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.from-pink-500\/25 { --tw-gradient-from: rgba(236, 72, 153, 0.25); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-purple-600\/25 { --tw-gradient-to: rgba(147, 51, 234, 0.25); }

/* Responsive utilities */
.sm\:w-80 { width: 20rem; }
.sm\:h-\[36rem\] { height: 36rem; }
.sm\:w-12 { width: 3rem; }
.sm\:h-12 { height: 3rem; }
.sm\:w-6 { width: 1.5rem; }
.sm\:h-6 { height: 1.5rem; }
.sm\:w-8 { width: 2rem; }
.sm\:h-8 { height: 2rem; }
.sm\:w-7 { width: 1.75rem; }
.sm\:h-7 { height: 1.75rem; }
.sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
.sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
.sm\:p-4 { padding: 1rem; }
.sm\:right-3 { right: 0.75rem; }
.sm\:bottom-20 { bottom: 5rem; }
.sm\:space-y-4 > * + * { margin-top: 1rem; }
.sm\:right-16 { right: 4rem; }
.sm\:min-w-52 { min-width: 13rem; }

.md\:w-80 { width: 20rem; }
.md\:h-\[36rem\] { height: 36rem; }
.md\:space-y-6 > * + * { margin-top: 1.5rem; }

.lg\:w-80 { width: 20rem; }
.lg\:h-\[36rem\] { height: 36rem; }

.xl\:w-80 { width: 20rem; }
.xl\:h-\[36rem\] { height: 36rem; }

/* Special viewport units */
.w-\[90vw\] { width: 90vw; }
.aspect-\[9\/16\] { aspect-ratio: 9/16; }
.min-w-44 { min-width: 11rem; }

/* TikTok-like video overlay styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.video-overlay > * {
    pointer-events: auto;
}

/* Right side action buttons positioning */
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.bottom-16 { bottom: 4rem; }
.bottom-20 { bottom: 5rem; }
.z-20 { z-index: 20; }

/* Additional spacing for action buttons */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Bottom overlay gradient */
.bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 1rem;
    padding-bottom: 1.5rem;
    z-index: 10;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .sm\:right-3 { right: 0.75rem; }
    .sm\:bottom-20 { bottom: 5rem; }
    .sm\:space-y-4 > * + * { margin-top: 1rem; }
    .sm\:w-12 { width: 3rem; }
    .sm\:h-12 { height: 3rem; }
    .sm\:w-6 { width: 1.5rem; }
    .sm\:h-6 { height: 1.5rem; }
    .sm\:w-8 { width: 2rem; }
    .sm\:h-8 { height: 2rem; }
    .sm\:w-7 { width: 1.75rem; }
    .sm\:h-7 { height: 1.75rem; }
    .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
    .sm\:p-4 { padding: 1rem; }
    .sm\:right-16 { right: 4rem; }
    .sm\:min-w-52 { min-width: 13rem; }
}

@media (min-width: 768px) {
    .md\:space-y-6 > * + * { margin-top: 1.5rem; }
}

/* SVG fill */
svg {
    fill: currentColor;
}

/* Stroke utilities for SVG */
[stroke="currentColor"] {
    stroke: currentColor;
}

[stroke-linecap="round"] {
    stroke-linecap: round;
}

[stroke-linejoin="round"] {
    stroke-linejoin: round;
}

[stroke-width="2"] {
    stroke-width: 2;
}

[stroke-width="3"] {
    stroke-width: 3;
}

[fill="currentColor"] {
    fill: currentColor;
}

[fill="none"] {
    fill: none;
}

/* TikTok-specific styles */
.h-screen {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.pt-safe { 
    padding-top: env(safe-area-inset-top, 3rem);
}

.pb-safe { 
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.text-yellow-400 { color: #facc15; }
.fill-red-500 { fill: #ef4444; }

.scale-125 { transform: scale(1.25); }

.z-25 { z-index: 25; }
.z-30 { z-index: 30; }

.w-px { width: 1px; }
.h-4 { height: 1rem; }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

.gap-2 { gap: 0.5rem; }

.object-contain { object-fit: contain; }
.sm\:object-cover { object-fit: cover; }

@media (min-width: 640px) {
    .sm\:object-cover { object-fit: cover; }
    .sm\:w-14 { width: 3.5rem; }
    .sm\:h-14 { height: 3.5rem; }
    .sm\:w-8 { width: 2rem; }
    .sm\:h-8 { height: 2rem; }
    .sm\:w-9 { width: 2.25rem; }
    .sm\:h-9 { height: 2.25rem; }
    .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}

/* Bottom action buttons positioning */
.bottom-20 { bottom: 5rem; }
.bottom-\[400px\] { bottom: 400px; }
.pb-6 { padding-bottom: 1.5rem; }
.pr-20 { padding-right: 5rem; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* Group interactions */
.group-hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.group-active\:scale-90:active { transform: scale(0.9); }

/* Gradient backgrounds */
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }

.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.from-pink-500\/30 { --tw-gradient-from: rgba(236, 72, 153, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-purple-600\/30 { --tw-gradient-to: rgba(147, 51, 234, 0.3); }

/* Border colors */
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }

/* Shadow */
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Backdrop filters */
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* Additional width/height */
.w-4 { width: 1rem; }
.w-9 { width: 2.25rem; }
.h-px { height: 1px; }
.h-9 { height: 2.25rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }

/* Additional padding */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* Additional spacing */
.mr-3 { margin-right: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }

/* Line height */
.leading-relaxed { line-height: 1.625; }

/* Font weights */
.font-semibold { font-weight: 600; }

/* Filter */
.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)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }
.drop-shadow-xl { filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); }

/* Special rounded */
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }

/* Border styles */
.border-t { border-top-width: 1px; }

/* Hover states */
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-black\/40:hover { background-color: rgba(0, 0, 0, 0.4); }

/* Transition */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:right-4 { right: 1rem; }
}