/* Places To Dance - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;
    --card: 0 0% 99%;
    --card-foreground: 222 47% 11%;
    --popover: 0 0% 100%;
    --popover-foreground: 222 47% 11%;
    --primary: 263 84% 58%;
    --primary-foreground: 0 0% 100%;
    --secondary: 220 20% 96%;
    --secondary-foreground: 222 47% 11%;
    --muted: 220 14% 96%;
    --muted-foreground: 220 9% 40%;
    --accent: 340 82% 52%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 88%;
    --input: 220 13% 91%;
    --ring: 263 84% 58%;
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(263 84% 58%) 0%, hsl(340 82% 52%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(340 82% 52%) 0%, hsl(20 90% 55%) 100%);
    --glow-primary: 0 0 40px hsl(263 84% 58% / 0.25);
    --glow-accent: 0 0 40px hsl(340 82% 52% / 0.25);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.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; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pl-11 { padding-left: 2.75rem; }
.pl-12 { padding-left: 3rem; }

.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.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; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.ml-1 { margin-left: 0.25rem; }
.mr-1 { margin-right: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.-mt-16 { margin-top: -4rem; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }

.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-\[70vh\] { height: 70vh; }

.min-h-screen { min-height: 100vh; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }
.min-w-0 { min-width: 0; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }

/* Typography */
.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-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.whitespace-nowrap { white-space: nowrap; }

/* Colors */
.text-white { color: #fff; }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-900 { color: #78350f; }
.text-violet-600 { color: #7c3aed; }
.text-emerald-600 { color: #059669; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-accent { background-color: hsl(var(--accent)); }

.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-primary\/80 { background-color: hsl(var(--primary) / 0.8); }
.bg-primary\/90 { background-color: hsl(var(--primary) / 0.9); }
.bg-accent\/10 { background-color: hsl(var(--accent) / 0.1); }
.bg-accent\/20 { background-color: hsl(var(--accent) / 0.2); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }
.bg-muted\/30 { background-color: hsl(var(--muted) / 0.3); }
.bg-muted\/50 { background-color: hsl(var(--muted) / 0.5); }
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }
.bg-white\/30 { background-color: rgb(255 255 255 / 0.3); }
.bg-white\/70 { background-color: rgb(255 255 255 / 0.7); }
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-black\/30 { background-color: rgb(0 0 0 / 0.3); }
.bg-black\/40 { background-color: rgb(0 0 0 / 0.4); }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }
.bg-black\/70 { background-color: rgb(0 0 0 / 0.7); }
.bg-black\/80 { background-color: rgb(0 0 0 / 0.8); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-dashed { border-style: dashed; }

.border-border { border-color: hsl(var(--border)); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-border\/30 { border-color: hsl(var(--border) / 0.3); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.border-white\/50 { border-color: rgb(255 255 255 / 0.5); }
.border-white { border-color: #fff; }
.border-white\/30 { border-color: rgb(255 255 255 / 0.3); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/50 { border-color: hsl(var(--primary) / 0.5); }
.border-accent\/20 { border-color: hsl(var(--accent) / 0.2); }
.border-amber-200 { border-color: #fde68a; }
.border-amber-200\/50 { border-color: rgb(253 230 138 / 0.5); }
.border-amber-300 { border-color: #fcd34d; }
.border-violet-200\/50 { border-color: rgb(221 214 254 / 0.5); }
.border-emerald-200\/50 { border-color: rgb(167 243 208 / 0.5); }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Colored shadows */
.shadow-amber-500\/20 { box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.2); }
.shadow-amber-500\/30 { box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3); }
.shadow-violet-500\/20 { box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.2); }
.shadow-violet-500\/30 { box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3); }
.shadow-emerald-500\/20 { box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.2); }
.shadow-emerald-500\/30 { box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.shadow-glow { box-shadow: 0 0 15px hsl(263 84% 58% / 0.5); }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-1 { inset: 0.25rem; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-1\/4 { top: 25%; }
.top-1\/2 { top: 50%; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.bottom-20 { bottom: 5rem; }
.bottom-1\/4 { bottom: 25%; }
.bottom-1\/3 { bottom: 33.333333%; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.right-0 { right: 0; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.right-8 { right: 2rem; }
.right-10 { right: 2.5rem; }
.right-1\/4 { right: 25%; }

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Effects */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

.blur-\[60px\] { filter: blur(60px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

.grayscale { filter: grayscale(100%); }

/* 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-opacity { transition-property: opacity; 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-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-top { object-position: top; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Fill */
.fill-current { fill: currentColor; }

/* Rotate */
.rotate-6 { transform: rotate(6deg); }
.rotate-12 { transform: rotate(12deg); }
.-rotate-12 { transform: rotate(-12deg); }

/* Scale */
.scale-75 { transform: scale(0.75); }
.scale-100 { transform: scale(1); }
.scale-110 { transform: scale(1.1); }
.scale-150 { transform: scale(1.5); }

/* Group Hover */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-100 { transform: scale(1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-primary { color: hsl(var(--primary)); }
.group:hover .group-hover\:bg-primary { background-color: hsl(var(--primary)); }
.group:hover .group-hover\:text-primary-foreground { color: hsl(var(--primary-foreground)); }
.group:hover .group-hover\:translate-x-0\.5 { transform: translateX(0.125rem); }

/* Hover States */
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:bg-primary\/90:hover { background-color: hsl(var(--primary) / 0.9); }
.hover\:bg-white\/30:hover { background-color: rgb(255 255 255 / 0.3); }
.hover\:bg-white\/90:hover { background-color: rgb(255 255 255 / 0.9); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:border-primary\/50:hover { border-color: hsl(var(--primary) / 0.5); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:opacity-70:hover { opacity: 0.7; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* Focus States */
.focus\:outline-none:focus { outline: none; }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px hsl(var(--ring)); }

/* Active States */
.active\:scale-95:active { transform: scale(0.95); }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: var(--glow-primary); }
    50% { opacity: 0.8; box-shadow: 0 0 60px hsl(263 84% 58% / 0.6); }
}

@keyframes slide-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.6s ease-out forwards; opacity: 0; }
.animate-fade-in { animation: fade-in 0.5s ease-out forwards; opacity: 0; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Custom Classes */
.glass {
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border));
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    background: hsl(0 0% 100% / 0.9);
}

.gradient-text {
    background: linear-gradient(135deg, hsl(263 84% 58%) 0%, hsl(340 82% 52%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glow-primary { box-shadow: var(--glow-primary); }
.glow-accent { box-shadow: var(--glow-accent); }

.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--primary) / 0)); }
.from-accent { --tw-gradient-from: hsl(var(--accent)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--accent) / 0)); }
.from-background { --tw-gradient-from: hsl(var(--background)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/30 { --tw-gradient-from: rgb(0 0 0 / 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/60 { --tw-gradient-from: rgb(0 0 0 / 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/70 { --tw-gradient-from: rgb(0 0 0 / 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/80 { --tw-gradient-from: rgb(0 0 0 / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-violet-900 { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-900 { --tw-gradient-from: #581c87; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-50 { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-200 { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-400\/20 { --tw-gradient-from: rgb(251 191 36 / 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-500\/10 { --tw-gradient-from: rgb(245 158 11 / 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-primary\/10 { --tw-gradient-from: hsl(var(--primary) / 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-accent\/10 { --tw-gradient-from: hsl(var(--accent) / 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-violet-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-violet-50 { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-violet-600 { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-500 { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-red-500 { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-50 { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-600 { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-teal-500 { --tw-gradient-from: #14b8a6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-yellow-500 { --tw-gradient-from: #eab308; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }
.via-primary\/90 { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.9), var(--tw-gradient-to); }
.via-background { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background)), var(--tw-gradient-to); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2), var(--tw-gradient-to); }
.via-black\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.3), var(--tw-gradient-to); }
.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #581c87, var(--tw-gradient-to); }
.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #a855f7, var(--tw-gradient-to); }
.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #9333ea, var(--tw-gradient-to); }
.via-orange-500 { --tw-gradient-stops: var(--tw-gradient-from), #f97316, var(--tw-gradient-to); }
.via-teal-500 { --tw-gradient-stops: var(--tw-gradient-from), #14b8a6, var(--tw-gradient-to); }
.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to); }

.to-transparent { --tw-gradient-to: transparent; }
.to-accent { --tw-gradient-to: hsl(var(--accent)); }
.to-background { --tw-gradient-to: hsl(var(--background)); }
.to-black\/30 { --tw-gradient-to: rgb(0 0 0 / 0.3); }
.to-black\/40 { --tw-gradient-to: rgb(0 0 0 / 0.4); }
.to-black\/50 { --tw-gradient-to: rgb(0 0 0 / 0.5); }
.to-black\/60 { --tw-gradient-to: rgb(0 0 0 / 0.6); }
.to-black\/70 { --tw-gradient-to: rgb(0 0 0 / 0.7); }
.to-indigo-900 { --tw-gradient-to: #312e81; }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.to-orange-200 { --tw-gradient-to: #fed7aa; }
.to-teal-600 { --tw-gradient-to: #0d9488; }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.to-orange-600 { --tw-gradient-to: #ea580c; }
.to-primary\/5 { --tw-gradient-to: hsl(var(--primary) / 0.05); }
.to-accent\/5 { --tw-gradient-to: hsl(var(--accent) / 0.05); }
.to-amber-500\/5 { --tw-gradient-to: rgb(245 158 11 / 0.05); }
.to-amber-400\/10 { --tw-gradient-to: rgb(251 191 36 / 0.1); }
.to-amber-50\/30 { --tw-gradient-to: rgb(255 251 235 / 0.3); }
.to-purple-50\/50 { --tw-gradient-to: rgb(250 245 255 / 0.5); }
.to-orange-50\/50 { --tw-gradient-to: rgb(255 247 237 / 0.5); }
.to-teal-50\/50 { --tw-gradient-to: rgb(240 253 250 / 0.5); }
.to-indigo-500 { --tw-gradient-to: #6366f1; }
.to-red-500 { --tw-gradient-to: #ef4444; }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }
.to-emerald-500 { --tw-gradient-to: #10b981; }
.to-rose-500 { --tw-gradient-to: #f43f5e; }
.to-violet-500 { --tw-gradient-to: #8b5cf6; }
.to-fuchsia-500 { --tw-gradient-to: #d946ef; }
.to-orange-500 { --tw-gradient-to: #f97316; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring));
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}
.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}
.btn-secondary:hover {
    background-color: hsl(var(--secondary) / 0.8);
}

.btn-outline {
    border: 1px solid hsl(var(--border));
    background-color: transparent;
}
.btn-outline:hover {
    background-color: hsl(var(--secondary));
}

.btn-ghost {
    background-color: transparent;
}
.btn-ghost:hover {
    background-color: hsl(var(--secondary));
}

.btn-hero {
    background-color: hsl(263 84% 58%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 40px hsl(263 84% 58% / 0.4);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.btn-hero:hover {
    transform: scale(1.05);
    background-color: hsl(263 84% 52%);
}
.btn-hero:active {
    transform: scale(0.95);
}

.btn-glass {
    backdrop-filter: blur(24px);
    background-color: hsl(var(--card) / 0.7);
    border: 1px solid hsl(var(--border) / 0.3);
}
.btn-glass:hover {
    background-color: hsl(var(--secondary) / 0.5);
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: calc(var(--radius) - 2px);
}

.btn-md {
    height: 2.5rem;
    padding: 0 1rem;
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 0.875rem;
}

.btn-sm {
    height: 2rem;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.75rem;
}

.btn-xl {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
}

.btn-icon {
    height: 2.5rem;
    width: 2.5rem;
    padding: 0;
}

/* Cards */
.card {
    border-radius: calc(var(--radius) + 4px);
    border: none;
    background-color: #fff;
    transition: all 0.3s;
}

.card-elevated {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.card-elevated:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.card-glass {
    backdrop-filter: blur(24px);
    background-color: hsl(0 0% 100% / 0.8);
    border-color: hsl(var(--border) / 0.5);
}

.card-spot {
    overflow: hidden;
}
.card-spot:hover {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.badge-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.badge-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

/* App Layout */
.app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: hsl(var(--background));
    overflow-x: hidden;
}

.sidebar {
    display: none;
    flex-direction: column;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid hsl(var(--border));
    transition: all 0.3s;
    position: sticky;
    top: 0;
}

.sidebar.expanded { width: 16rem; }
.sidebar.collapsed { width: 5rem; }

.main-content {
    flex: 1;
    min-width: 0;
    padding-bottom: 6rem;
}

.bottom-nav {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
    max-width: 100%;
}

.bottom-nav-inner {
    background-color: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid hsl(var(--border));
    overflow: hidden;
}

/* Responsive Media Queries */
@media (min-width: 480px) {
    .xs\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xs\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
}

@media (min-width: 640px) {
    .sm\:flex { display: flex; }
    .sm\:hidden { display: none; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .sm\:gap-4 { gap: 1rem; }
    .sm\:gap-6 { gap: 1.5rem; }
    .sm\:gap-8 { gap: 2rem; }
    .sm\:p-6 { padding: 1.5rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .sm\:pb-12 { padding-bottom: 3rem; }
    .sm\:pb-16 { padding-bottom: 4rem; }
    .sm\:pb-20 { padding-bottom: 5rem; }
    .sm\:mb-4 { margin-bottom: 1rem; }
    .sm\:mb-6 { margin-bottom: 1.5rem; }
    .sm\:mb-8 { margin-bottom: 2rem; }
    .sm\:mb-10 { margin-bottom: 2.5rem; }
    .sm\:mb-12 { margin-bottom: 3rem; }
    .sm\:text-sm { font-size: 0.875rem; }
    .sm\:text-base { font-size: 1rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-2xl { font-size: 1.5rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:text-4xl { font-size: 2.25rem; }
    .sm\:text-5xl { font-size: 3rem; }
    .sm\:w-auto { width: auto; }
    .sm\:w-5 { width: 1.25rem; }
    .sm\:w-6 { width: 1.5rem; }
    .sm\:w-10 { width: 2.5rem; }
    .sm\:w-14 { width: 3.5rem; }
    .sm\:w-28 { width: 7rem; }
    .sm\:w-64 { width: 16rem; }
    .sm\:w-72 { width: 18rem; }
    .sm\:h-5 { height: 1.25rem; }
    .sm\:h-6 { height: 1.5rem; }
    .sm\:h-10 { height: 2.5rem; }
    .sm\:h-14 { height: 3.5rem; }
    .sm\:h-16 { height: 4rem; }
    .sm\:h-36 { height: 9rem; }
    .sm\:h-72 { height: 18rem; }
    .sm\:h-\[70vh\] { height: 70vh; }
    .sm\:h-\[80vh\] { height: 80vh; }
    .sm\:min-h-\[400px\] { min-height: 400px; }
    .sm\:min-h-\[500px\] { min-height: 500px; }
    .sm\:min-h-\[600px\] { min-height: 600px; }
    .sm\:max-w-md { max-width: 28rem; }
    .sm\:max-w-xl { max-width: 36rem; }
    .sm\:row-span-2 { grid-row: span 2 / span 2; }
    .sm\:rounded-2xl { border-radius: calc(var(--radius) + 8px); }
    .sm\:rounded-3xl { border-radius: 1.5rem; }
    .sm\:block { display: block; }
    .sm\:inline { display: inline; }
    .sm\:bottom-8 { bottom: 2rem; }
    .sm\:blur-\[100px\] { filter: blur(100px); }
    .sm\:text-center { text-align: center; }
    .sm\:justify-start { justify-content: flex-start; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:gap-12 { gap: 3rem; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .md\:pb-8 { padding-bottom: 2rem; }
    .md\:text-left { text-align: left; }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:w-72 { width: 18rem; }
    .md\:w-80 { width: 20rem; }
    .md\:w-96 { width: 24rem; }
    .md\:h-60 { height: 15rem; }
    .md\:h-72 { height: 18rem; }
    .md\:h-80 { height: 20rem; }
    .md\:h-96 { height: 24rem; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    .lg\:pb-0 { padding-bottom: 0; }
    .lg\:pb-6 { padding-bottom: 1.5rem; }
    .lg\:text-7xl { font-size: 4.5rem; }
    .lg\:text-8xl { font-size: 6rem; }
    .lg\:h-screen { height: 100vh; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    .lg\:w-1\/3 { width: 33.333333%; }
    .lg\:w-2\/3 { width: 66.666667%; }
    .lg\:max-h-full { max-height: 100%; }
    .lg\:flex-row { flex-direction: row; }
    
    /* Desktop sidebar */
    .sidebar {
        display: flex;
    }
    
    .main-content {
        padding-bottom: 0;
    }
    
    .bottom-nav {
        display: none;
    }
}

/* Hero Section Specific */
.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.hero-badge-dot {
    background: hsl(340 82% 52%);
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.btn-glass-hero {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-glass-hero:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Snap scroll */
.snap-x { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }

/* Space between */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-20 > * + * { margin-top: 5rem; }

/* Specific positioning for text color with white bg opacity */
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }
.text-white\/90 { color: rgb(255 255 255 / 0.9); }
.text-muted-foreground\/20 { color: hsl(var(--muted-foreground) / 0.2); }
.text-muted-foreground\/40 { color: hsl(var(--muted-foreground) / 0.4); }
.text-muted-foreground\/50 { color: hsl(var(--muted-foreground) / 0.5); }

.border-border\/30 { border-color: hsl(var(--border) / 0.3); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-muted-foreground\/20 { border-color: hsl(var(--muted-foreground) / 0.2); }

/* SVG icon sizing */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* Map Filter Styles */
.filter-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.375rem;
}

.filter-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--secondary));
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: all 0.2s;
}

.filter-select:hover {
    border-color: hsl(var(--primary) / 0.5);
}

.filter-select:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background-color: transparent;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    transition: all 0.2s;
}

.filter-pill:hover {
    background-color: hsl(var(--secondary));
    color: hsl(var(--foreground));
}

.filter-pill.active {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: white;
}

.feature-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid hsl(var(--border));
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.feature-checkbox:hover {
    background-color: hsl(var(--secondary));
}

.feature-checkbox:has(input:checked) {
    background-color: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary));
}

.feature-checkbox input {
    display: none;
}

.feature-checkbox span {
    white-space: nowrap;
}

/* Additional color utilities */
.bg-red-500 { background-color: #ef4444; }
.bg-green-500 { background-color: #22c55e; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.group-hover\:text-green-600:hover { color: #16a34a; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-pink-100 { background-color: #fce7f3; }
.border-amber-200 { border-color: #fde68a; }
.text-amber-700 { color: #b45309; }
.text-indigo-700 { color: #4338ca; }
.text-pink-700 { color: #be185d; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-stone-50 { background-color: #fafaf9; }
.from-slate-50 { --tw-gradient-from: #f8fafc; }
.to-stone-50 { --tw-gradient-to: #fafaf9; }
.from-amber-100 { --tw-gradient-from: #fef3c7; }
.from-amber-400 { --tw-gradient-from: #fbbf24; }
.to-amber-500 { --tw-gradient-to: #f59e0b; }
.to-orange-500 { --tw-gradient-to: #f97316; }
.via-orange-50 { --tw-gradient-via: #fff7ed; }
.to-rose-100 { --tw-gradient-to: #ffe4e6; }
.text-amber-600 { color: #d97706; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-amber-200 { border-color: #fde68a; }
.hover\:bg-amber-50:hover { background-color: #fffbeb; }
.from-amber-50 { --tw-gradient-from: #fffbeb; }
.via-orange-50 { --tw-gradient-via: #fff7ed; }
.to-rose-50 { --tw-gradient-to: #fff1f2; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:border-gray-300:hover { border-color: #d1d5db; }
.group-hover\:text-amber-600:hover { color: #d97706; }

/* Masters Page Buttons */
.master-play-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.master-play-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.master-info-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.master-info-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Master Card Styles - Legacy */
.master-card {
    transition: transform 0.3s ease;
}

.master-card:hover {
    transform: translateY(-4px);
}

/* Master Card - New Modern Design */
.master-card-new {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.master-card-new:focus {
    outline: none;
}

.master-card-new:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 4px;
    border-radius: 1rem;
}

/* Gradient text utilities */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Gradient backgrounds for masters */
.from-rose-500 { --tw-gradient-from: #f43f5e; }
.via-pink-500 { --tw-gradient-via: #ec4899; }
.to-purple-600 { --tw-gradient-to: #9333ea; }

.from-orange-500 { --tw-gradient-from: #f97316; }
.via-red-500 { --tw-gradient-via: #ef4444; }
.to-pink-500 { --tw-gradient-to: #ec4899; }

.from-emerald-500 { --tw-gradient-from: #10b981; }
.via-teal-500 { --tw-gradient-via: #14b8a6; }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }

.from-violet-500 { --tw-gradient-from: #8b5cf6; }
.to-purple-600 { --tw-gradient-to: #9333ea; }

/* Ensure gradients work properly */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-via, var(--tw-gradient-from)), var(--tw-gradient-to));
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-to));
}

/* Carousel Scroll Buttons */
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: hsl(var(--secondary));
    border-color: hsl(var(--primary) / 0.3);
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Atlas Hero Title */
.atlas-title {
    font-family: "Playfair Display", Georgia, serif !important;
    font-style: italic;
    font-weight: 700 !important;
    font-size: 3rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .atlas-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 768px) {
    .atlas-title {
        font-size: 5.5rem;
    }
}

@media (min-width: 1024px) {
    .atlas-title {
        font-size: 7rem;
    }
}

/* Special row span */
.row-span-2 { grid-row: span 2 / span 2; }

/* First child styles */
.first\:text-foreground:first-child { color: hsl(var(--foreground)); }
.first\:text-lg:first-child { font-size: 1.125rem; }
.first\:text-xl:first-child { font-size: 1.25rem; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Prose styles */
.prose { max-width: 65ch; }
.prose p { margin-bottom: 1.25em; }

/* Negative positions */
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }

/* ============================================ */
/* Masters Page Updated Styles */
/* ============================================ */

/* Master Card Styles */
.master-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.master-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.master-card .master-play-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.master-card:hover .master-play-overlay {
    opacity: 1;
}

.master-card .master-play-btn {
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

.master-card:hover .master-play-btn {
    transform: scale(1);
}

.master-card .master-icon {
    transition: opacity 0.3s ease;
}

.master-card:hover .master-icon {
    opacity: 0.5;
}

.master-card .master-name {
    transition: color 0.2s ease;
}

.master-card:hover .master-name {
    color: hsl(var(--primary));
}

/* Category-specific hover glows */
.master-card[data-category="legends-of-ballet"]:hover {
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.3);
}

.master-card[data-category="street-dance-pioneers"]:hover {
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.3);
}

.master-card[data-category="folk-guardians"]:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.3);
}

/* Master Row Section */
.master-row-section .master-row-nav {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.master-row-section:hover .master-row-nav {
    opacity: 1;
}

/* Video Modal Styles */
#video-modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Aspect ratio for video */
.aspect-\[16\/10\] {
    aspect-ratio: 16 / 10;
}

/* Additional backdrop blur */
.backdrop-blur-\[2px\] {
    backdrop-filter: blur(2px);
}

/* Scale transforms */
.scale-75 { transform: scale(0.75); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* ============================================ */
/* MASTERS PAGE - ALL REQUIRED CLASSES */
/* ============================================ */

/* Background colors with opacity */
.bg-white { background-color: #ffffff; }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-black { background-color: #000000; }
.bg-black\/40 { background-color: rgb(0 0 0 / 0.4); }
.bg-black\/60 { background-color: rgb(0 0 0 / 0.6); }
.bg-black\/90 { background-color: rgb(0 0 0 / 0.9); }
.bg-black\/95 { background-color: rgb(0 0 0 / 0.95); }
.bg-transparent { background-color: transparent; }

/* Amber colors */
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-500\/10 { background-color: rgb(245 158 11 / 0.1); }
.bg-emerald-500\/90 { background-color: rgb(16 185 129 / 0.9); }

/* Text colors with opacity */
.text-white { color: #ffffff; }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/90 { color: rgb(255 255 255 / 0.9); }
.text-black { color: #000000; }

/* Hover backgrounds */
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/20:hover { background-color: rgb(255 255 255 / 0.2); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:bg-secondary\/50:hover { background-color: hsl(var(--secondary) / 0.5); }

/* Button heights */
.h-9 { height: 2.25rem; }
.h-12 { height: 3rem; }

/* Orange colors for gradients */
.bg-orange-500\/15 { background-color: rgb(249 115 22 / 0.15); }
.bg-amber-500\/20 { background-color: rgb(245 158 11 / 0.2); }

/* Specific via gradients */
.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #9333ea, var(--tw-gradient-to); }
.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to); }

/* More gradient stops */
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.to-purple-500 { --tw-gradient-to: #a855f7; }

/* Fill current for icons */
.fill-current { fill: currentColor; }

/* Focus visible ring */
.focus-visible\:ring-2:focus-visible { 
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring)); 
}
.focus-visible\:ring-primary:focus-visible {
    --tw-ring-color: hsl(var(--primary));
}

/* Disabled states */
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: 0.5; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Hover scale */
.hover\:scale-105:hover { transform: scale(1.05); }

/* Border radius */
.rounded-md { border-radius: calc(var(--radius) - 2px); }

/* Font sizes */
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Max heights for modal */
.max-h-\[40vh\] { max-height: 40vh; }

/* Leading relaxed for text */
.leading-relaxed { line-height: 1.625; }

/* Transition colors */
.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;
}

/* Ring offset */
.ring-offset-background { --tw-ring-offset-color: hsl(var(--background)); }

/* Whitespace nowrap */
.whitespace-nowrap { white-space: nowrap; }

/* Top positioning */
.top-1\/4 { top: 25%; }

/* Bottom positioning */
.bottom-1\/3 { bottom: 33.333333%; }

/* Right positioning */
.right-10 { right: 2.5rem; }
.right-1\/4 { right: 25%; }

/* Width */
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }

/* Height */
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Inline flex */
.inline-flex { display: inline-flex; }
