/* ===== 1. Global Reset ===== */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: rgba(229, 231, 235, 0.1); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body { margin: 0; padding: 0; }
hr { height: 0; color: inherit; border-top-width: 1px; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; margin: 0; padding: 0; }
button { cursor: pointer; }

/* ===== 2. Body ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #020408;
    color: #e2e8f0;
    overflow-x: hidden;
    font-size: 1.35rem;
    line-height: 2.0;
}

/* ===== 3. Custom .cinema-hero-split ===== */
.cinema-hero-split {
    background: linear-gradient(90deg, rgba(2,4,8,0.95) 0%, rgba(2,4,8,0.7) 50%, rgba(2,4,8,0.95) 100%), url('/images/kpop-live-stadium-ocean.jpg');
    background-size: cover;
    background-position: center;
}

/* ===== 4. Custom .stat-giant-text ===== */
.stat-giant-text {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -0.05em;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 50%, rgba(255,255,255,0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== 5. Custom .premium-card-hover ===== */
.premium-card-hover {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-card-hover:hover {
    border-color: rgba(79,70,229,0.5);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-6px);
}

/* ===== 6. HubSpot Form Override ===== */
#hubspot-form-wrapper .hs-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
@media (max-width: 768px) { #hubspot-form-wrapper .hs-form { grid-template-columns: 1fr; } }
#hubspot-form-wrapper .hs-form .hs-form-field { grid-column: span 1; }
#hubspot-form-wrapper .hs-form .hs-form-field.hs-fieldtype-textarea { grid-column: span 2; }
#hubspot-form-wrapper .hs-form label { color: #94a3b8; font-size: 1rem; font-weight: 700; display: block; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15em; }
#hubspot-form-wrapper .hs-form input, #hubspot-form-wrapper .hs-form textarea, #hubspot-form-wrapper .hs-form select {
    background: #06090e; border: 1px solid rgba(255, 255, 255, 0.08); padding: 1.6rem; color: #fff; width: 100% !important; border-radius: 0px; font-size: 1.2rem;
}
#hubspot-form-wrapper .hs-form input:focus, #hubspot-form-wrapper .hs-form textarea:focus { border-color: #4f46e5; outline: none; }
#hubspot-form-wrapper .hs-form .hs-submit { grid-column: span 2; }
#hubspot-form-wrapper .hs-form .hs-button {
    background: #4f46e5; color: #fff; padding: 1.8rem; font-weight: 700; text-transform: uppercase; width: 100%; border: none; cursor: pointer; letter-spacing: 0.2em; font-size: 1.1rem;
}
#hubspot-form-wrapper .hs-form .hs-button:hover { background: #4338ca; }

/* ===== 7. @keyframes (pulse/spin/ping/bounce) ===== */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(.8,0,1,1); } 50% { transform: none; animation-timing-function: cubic-bezier(0,0,.2,1); } }

/* ===== 8. Positioning ===== */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.top-0 { top: 0px; }
.left-1\/2 { left: 50%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.\-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.z-50 { z-index: 50; }

/* ===== 9. Display ===== */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* ===== 10. Flexbox ===== */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }

/* ===== 11. 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)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }

/* ===== 12. Sizing (Width, Height, Min-Height, Max-Width) ===== */
.w-2 { width: 0.5rem; }
.w-64 { width: 16rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-7 { height: 1.75rem; }
.h-32 { height: 8rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-\[1px\] { height: 1px; }
.h-\[450px\] { height: 450px; }
.h-\[550px\] { height: 550px; }
.h-\[650px\] { height: 650px; }
.min-h-\[90vh\] { min-height: 90vh; }
.max-w-5xl { max-width: 64rem; }
.max-w-\[1300px\] { max-width: 1300px; }
.max-w-\[1600px\] { max-width: 1600px; }
.max-w-md { max-width: 28rem; }

/* ===== 13. Spacing ===== */
/* Padding */
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-36 { padding-top: 9rem; padding-bottom: 9rem; }
.py-52 { padding-top: 13rem; padding-bottom: 13rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pr-4 { padding-right: 1rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-28 { margin-bottom: 7rem; }
.mb-32 { margin-bottom: 8rem; }
.mt-4 { margin-top: 1rem; }
.mr-4 { margin-right: 1rem; }

/* Gap */
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-x-16 { column-gap: 4rem; }
.gap-y-24 { row-gap: 6rem; }

/* Space between children */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ===== 14. Typography ===== */
/* Font Sizes */
.text-\[10px\] { font-size: 12px; }
.text-\[11px\] { font-size: 13px; }
.text-\[12px\] { font-size: 14px; }
.text-xs { font-size: 0.875rem; line-height: 1.25rem; }
.text-sm { font-size: 1rem; line-height: 1.5rem; }
.text-base { font-size: 1.125rem; line-height: 1.75rem; }
.text-lg { font-size: 1.25rem; line-height: 1.75rem; }
.text-xl { font-size: 1.5rem; line-height: 2rem; }
.text-2xl { font-size: 1.75rem; line-height: 2rem; }
.text-3xl { font-size: 2rem; 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; }

/* Font Weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Letter Spacing */
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Text Align */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }

/* Text Color */
.text-transparent { color: transparent; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-indigo-300 { color: #a5b4fc; }
.text-indigo-400 { color: #818cf8; }

/* ===== 15. Background Color ===== */
.bg-transparent { background-color: transparent; }
.bg-black { background-color: #000000; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/\[0\.01\] { background-color: rgba(255, 255, 255, 0.01); }
.bg-white\/\[0\.02\] { background-color: rgba(255, 255, 255, 0.02); }
.bg-\[\#010204\] { background-color: #010204; }
.bg-\[\#020408\] { background-color: #020408; }
.bg-\[\#020408\]\/95 { background-color: rgba(2, 4, 8, 0.95); }
.bg-\[\#04060a\] { background-color: #04060a; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-950 { background-color: #1e1b4b; }
.bg-indigo-950\/50 { background-color: rgba(30, 27, 75, 0.5); }

/* ===== 16. Background Gradient ===== */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-indigo-400 { --tw-gradient-from: #818cf8 var(--tw-gradient-from-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); }
.from-indigo-500 { --tw-gradient-from: #6366f1 var(--tw-gradient-from-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); }
.from-transparent { --tw-gradient-from: transparent var(--tw-gradient-from-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.to-slate-200 { --tw-gradient-to: #e2e8f0 var(--tw-gradient-to-position); }
.to-slate-500 { --tw-gradient-to: #64748b var(--tw-gradient-to-position); }
.to-purple-600 { --tw-gradient-to: #9333ea var(--tw-gradient-to-position); }
.to-transparent { --tw-gradient-to: transparent var(--tw-gradient-to-position); }
.via-slate-200 { --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0 var(--tw-gradient-via-position), var(--tw-gradient-to, rgba(226, 232, 240, 0)); }
.via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1 var(--tw-gradient-via-position), var(--tw-gradient-to, rgba(99, 102, 241, 0)); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* ===== 17. Border ===== */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-indigo-800\/50 { border-color: rgba(55, 48, 163, 0.5); }
.border-indigo-900\/40 { border-color: rgba(49, 46, 129, 0.4); }

/* ===== 18. Border Radius ===== */
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }

/* ===== 19. Opacity ===== */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* ===== 20. Box Shadow ===== */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05); }
.shadow-indigo-600\/10 { box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1), 0 4px 6px -4px rgba(79, 70, 229, 0.1); }

/* ===== 21. Backdrop Filter ===== */
.backdrop-blur-xl { --tw-backdrop-blur: blur(24px); -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); }

/* ===== 22. Transition ===== */
.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; }
.duration-1000 { transition-duration: 1000ms; }

/* ===== 23. Transform ===== */
.translate-x-0 { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ===== 24. Object Fit ===== */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ===== 25. Overflow ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ===== 26. Animation ===== */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* ===== 27. Hover Variants ===== */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-slate-300:hover { color: #cbd5e1; }
.hover\:text-indigo-400:hover { color: #818cf8; }
.hover\:bg-indigo-600:hover { background-color: #4f46e5; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:border-white:hover { border-color: #ffffff; }

/* ===== 28. Group Hover ===== */
.group:hover .group-hover\:opacity-20 { opacity: 0.2; }

/* ===== 29. First Child ===== */
.first\:pt-0:first-child { padding-top: 0; }

/* ===== 30. Divide ===== */
.divide-y > * + * { border-top-width: 1px; }
.divide-white\/5 > * + * { border-color: rgba(255, 255, 255, 0.05); }

/* ===== 31. Pointer Events ===== */
.pointer-events-none { pointer-events: none; }

/* ===== 32. sm: (min-width: 640px) ===== */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .sm\:pl-16 { padding-left: 4rem; }
}

/* ===== 33. md: (min-width: 768px) ===== */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:inline { display: inline; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:items-end { align-items: flex-end; }
    .md\:text-right { text-align: right; }
}

/* ===== 34. lg: (min-width: 1024px) ===== */
@media (min-width: 1024px) {
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-6 { grid-column: span 6 / span 6; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:flex { display: flex; }
    .lg\:grid { display: grid; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:justify-end { justify-content: flex-end; }
    .lg\:items-center { align-items: center; }
    .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    .lg\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
    .lg\:p-12 { padding: 3rem; }
    .lg\:p-16 { padding: 4rem; }
    .lg\:text-lg { font-size: 1.25rem; line-height: 1.75rem; }
    .lg\:text-xl { font-size: 1.5rem; line-height: 2rem; }
    .lg\:text-2xl { font-size: 1.75rem; line-height: 2rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:sticky { position: sticky; }
    .lg\:top-40 { top: 10rem; }
}

/* ===== 35. xl: (min-width: 1280px) ===== */
@media (min-width: 1280px) {
    .xl\:col-span-5 { grid-column: span 5 / span 5; }
    .xl\:col-span-7 { grid-column: span 7 / span 7; }
    .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .xl\:flex { display: flex; }
}
