/*
  tailwind-compiled.css

  HINWEIS: Diese Datei simuliert eine von der Tailwind-CLI generierte CSS-Datei.
  Sie enthält einen CSS-Reset (Preflight), die benutzerdefinierten Theme-Variablen,
  die spezifischen Styles aus der ursprünglichen index.html und die auf der Seite
  verwendeten Tailwind-Utility-Klassen.
*/

/* 1. Tailwind CSS Preflight (vereinfachter Reset) */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
body { margin: 0; line-height: inherit; }
h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, blockquote { margin: 0; padding: 0; }
img, video, svg { display: block; vertical-align: middle; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: inherit; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button { background-color: transparent; background-image: none; padding: 0; cursor: pointer; }
button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; }

/* 2. Benutzerdefinierte Theme-Variablen aus tailwind.config */
:root {
    --color-brand: #00FF66;
    --color-brand-dark: #00CC52;
    --color-brand-glow: rgba(0, 255, 102, 0.35);
    --color-brand-cyan: #00E5FF;
    --color-dark-base: #0F1115;
    --color-dark-card: #1E222A;
    --color-dark-border: #2a303a;
    --font-display: 'Space Grotesk', 'sans-serif';
}

/* 3. Übernommene Styles aus dem <style>-Block der index.html */
body {
    background-color: var(--color-dark-base);
    color: #EDEDED;
}
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.scroll-smooth { scroll-behavior: smooth; }
.selection\:bg-brand\/30::selection { background-color: rgba(0, 255, 102, 0.3); }
.selection\:text-green-200::selection { color: #a7f3d0; }
section[id] { scroll-margin-top: 120px; }
video { transform: translateZ(0); backface-visibility: hidden; }
.glow-effect:hover { box-shadow: 0 0 25px var(--color-brand-glow); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-dark-base); }
::-webkit-scrollbar-thumb { background: var(--color-dark-border); border-radius: 4px; transition: background-color 0.2s ease; }
::-webkit-scrollbar-thumb:hover { background: var(--color-brand); }

@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spin { to { --angle: 360deg; } }
.animated-border-glow { position: relative; display: block; text-decoration: none; }
.animated-border-glow::before {
    content: ''; position: absolute; inset: -3px; z-index: -1;
    background: conic-gradient(from var(--angle), transparent 40%, var(--color-brand), transparent 60%);
    border-radius: 1rem; animation: spin 3s linear infinite; opacity: 0;
    transition: opacity 0.3s ease-in-out; filter: blur(5px);
}
.animated-border-glow:hover::before { opacity: 1; }
.animated-border-glow > div { transition: border-color 0.3s ease; }
.animated-border-glow:hover > div { border-color: var(--color-brand); }

.video-overlay-icon { transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0; }
.video-card:hover .video-overlay-icon, .video-card.is-paused .video-overlay-icon { opacity: 1; }
.video-overlay-text { transition: opacity 0.3s ease; }
.video-card:not(.is-paused) .video-overlay-text { opacity: 0; }
.text-shadow { text-shadow: 0 2px 5px rgb(0 0 0 / 0.7); }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-brand-glow); }
    50% { box-shadow: 0 0 35px rgba(0, 255, 102, 0.5); }
}
.trailer-glow { animation: pulse-glow 3s ease-in-out infinite; border: 1px solid var(--color-brand); }

@keyframes marquee-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.animate-marquee-ltr { animation: marquee-ltr 80s linear infinite; }

.chat-window { box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: opacity 0.3s ease, transform 0.3s ease; }
.chat-messages-container { scroll-behavior: smooth; }
.chat-bubble { max-width: 85%; white-space: pre-line; overflow-wrap: break-word; }
.chat-bubble-user { background-color: var(--color-brand); color: var(--color-dark-base); }
.chat-bubble-support { background-color: var(--color-dark-base); border: 1px solid var(--color-brand); }
.chat-action-button { background-color: var(--color-dark-card); border: 1px solid var(--color-brand); color: var(--color-brand); transition: all 0.2s ease; }
.chat-action-button:hover { background-color: var(--color-brand); color: var(--color-dark-base); box-shadow: 0 0 12px rgba(0, 255, 102, 0.4); }

#chat-header { cursor: move; }
#resize-handle { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; cursor: se-resize; z-index: 10; }
#close-chat-button { cursor: pointer; }

.footer-logo-glow { filter: drop-shadow(0 0 30px rgba(0, 255, 102, 0.3)); transition: filter 0.3s ease-in-out; }
.footer-logo-glow:hover { filter: drop-shadow(0 0 45px rgba(0, 255, 102, 0.6)); }

.clan-tag {
    display: inline-flex; align-items: center; background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.4); color: var(--color-brand); font-weight: 700;
    padding: 0.05rem 0.4rem; border-radius: 0.25rem; font-size: 0.8em;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.2); vertical-align: middle;
}

/* 4. Kompilierte Utility-Klassen */
/* Layout, Position, Display */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:-translate-y-2 { transform: translateY(-0.5rem); }
.group:hover .group-hover\:from-dark-base\/80 { --tw-gradient-from: rgba(15, 17, 21, 0.8); --tw-gradient-to: rgba(15, 17, 21, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0px; }
.bottom-0 { bottom: 0px; }
.bottom-4 { bottom: 1rem; }
.bottom-full { bottom: 100%; }
.-bottom-1 { bottom: -0.25rem; }
.right-0 { right: 0px; }
.right-4 { right: 1rem; }
.-right-2 { right: -0.5rem; }
.\!-right-2 { right: -0.5rem !important; }
.-right-40 { right: -10rem; }
.-left-2 { left: -0.5rem; }
.\!-left-2 { left: -0.5rem !important; }
.-top-40 { top: -10rem; }
.top-0 { top: 0px; }
.top-10 { top: 2.5rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[51\] { z-index: 51; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-x-16 > :not([hidden]) ~ :not([hidden]) { margin-left: 4rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.whitespace-nowrap { white-space: nowrap; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-\[calc\(100vw-2rem\)\] { width: calc(100vw - 2rem); }
.min-w-\[320px\] { min-width: 320px; }
.min-w-max { min-width: max-content; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-36 { height: 9rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-\[60vh\] { height: 60vh; }
.min-h-\[400px\] { min-height: 400px; }
.max-h-\[80vh\] { max-height: 80vh; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }

/* Typography */
.font-display { font-family: var(--font-display); }
.text-\[11px\] { font-size: 11px; }
.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; }
.uppercase { text-transform: uppercase; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-normal { font-weight: 400; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-brand { color: var(--color-brand); }
.text-brand-cyan { color: var(--color-brand-cyan); }
.text-dark-base { color: var(--color-dark-base); }
.hover\:text-brand:hover { color: var(--color-brand); }
.hover\:text-white:hover { color: var(--color-white); }
.hover\:text-dark-base:hover { color: var(--color-dark-base); }
.hover\:text-gray-300:hover { color: #d1d5db; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* Backgrounds, Borders, Effects */
.bg-brand { background-color: var(--color-brand); }
.bg-brand\/10 { background-color: rgba(0, 255, 102, 0.1); }
.bg-brand\/20 { background-color: rgba(0, 255, 102, 0.2); }
.bg-dark-base { background-color: var(--color-dark-base); }
.bg-dark-base\/90 { background-color: rgba(15, 17, 21, 0.9); }
.bg-dark-base\/95 { background-color: rgba(15, 17, 21, 0.95); }
.bg-dark-card { background-color: var(--color-dark-card); }
.bg-dark-border\/50 { background-color: rgba(42, 48, 58, 0.5); }
.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-dark-base { --tw-gradient-from: var(--color-dark-base); --tw-gradient-to: rgba(15, 17, 21, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); --tw-gradient-to: rgba(0, 0, 0, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.hover\:bg-brand:hover { background-color: var(--color-brand); }
.hover\:bg-brand-dark:hover { background-color: var(--color-brand-dark); }
.hover\:bg-brand\/20:hover { background-color: rgba(0, 255, 102, 0.2); }
.hover\:bg-dark-card:hover { background-color: var(--color-dark-card); }
.hover\:bg-dark-border:hover { background-color: var(--color-dark-border); }
.hover\:bg-black\/75:hover { background-color: rgba(0, 0, 0, 0.75); }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-dark-border { border-color: var(--color-dark-border); }
.border-brand { border-color: var(--color-brand); }
.border-brand\/30 { border-color: rgba(0, 255, 102, 0.3); }
.border-brand\/40 { border-color: rgba(0, 255, 102, 0.4); }
.border-brand\/70 { border-color: rgba(0, 255, 102, 0.7); }
.hover\:border-brand:hover { border-color: var(--color-brand); }
.hover\:border-brand\/30:hover { border-color: rgba(0, 255, 102, 0.3); }
.hover\:border-gray-600:hover { border-color: #4b5563; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.hover\:shadow-\[0_0_25px_rgba\(0\,229\,255\,0\.2\)\]:hover { box-shadow: 0 0 25px rgba(0,229,255,0.2); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.blur-\[120px\] { filter: blur(120px); }
.filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.drop-shadow\(0_0_20px_rgba\(0\,_255\,_102\,_0\.5\)\) { --tw-drop-shadow: drop-shadow(0 0 20px rgba(0, 255, 102, 0.5)); filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }

/* Transitions, Transforms, Animations */
.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-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-full { --tw-translate-x: -100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-y-2 { --tw-translate-y: 0.5rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-y-4 { --tw-translate-y: 1rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:-translate-y-1:hover { --tw-translate-y: -0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.rotate-45 { --tw-rotate: 45deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 50% { opacity: .5; } }

/* Interactivity */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* 5. Chat Widget - Missing JIT Utility Classes */
.sm\:w-\[460px\] { } /* defined inside @media sm below */
.md\:w-\[480px\] { } /* defined inside @media md below */
.bg-\[\#0b0f17\] { background-color: #0b0f17; }
.bg-\[\#101726\] { background-color: #101726; }
.hover\:bg-\[\#182338\]:hover { background-color: #182338; }
.text-\[\#0b0f17\] { color: #0b0f17; }
.text-\[13px\] { font-size: 13px; }
.sm\:text-\[13px\] { } /* defined inside @media sm below */
.border-\[\#1e293b\] { border-color: #1e293b; }
.border-brand\/60 { border-color: rgba(0, 255, 102, 0.6); }
.hover\:border-brand\/60:hover { border-color: rgba(0, 255, 102, 0.6); }
.bg-dark-base\/80 { background-color: rgba(15, 17, 21, 0.8); }
.hover\:text-\[\#0b0f17\]:hover { color: #0b0f17; }
.rounded-tr-sm { border-top-right-radius: 0.125rem; }
.rounded-tl-sm { border-top-left-radius: 0.125rem; }
.h-\[72vh\] { height: 72vh; }
.min-h-\[480px\] { min-height: 480px; }
.max-h-\[85vh\] { max-height: 85vh; }
.max-w-\[85\%\] { max-width: 85%; }
.min-h-0 { min-height: 0px; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.my-1\.5 { margin-top: 0.375rem; margin-bottom: 0.375rem; }
.pt-1 { padding-top: 0.25rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.shrink-0 { flex-shrink: 0; }
.object-cover { object-fit: cover; }
.no-underline { text-decoration-line: none; }
.leading-snug { line-height: 1.375; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.w-2\.5 { width: 0.625rem; }
.h-2\.5 { height: 0.625rem; }

.chat-opt-btn { color: #e5e7eb !important; }
.chat-opt-btn:hover { color: #00ff66 !important; }
.chat-opt-link { color: #00ff66 !important; }
.chat-opt-link:hover { color: #0b0f17 !important; }

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:inline-block { display: inline-block; }
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:w-96 { width: 24rem; }
    .sm\:bottom-6 { bottom: 1.5rem; }
    .sm\:right-6 { right: 1.5rem; }
    .sm\:w-\[460px\] { width: 460px; }
    .sm\:text-\[13px\] { font-size: 13px; }
    .sm\:p-4 { padding: 1rem; }
    .sm\:p-5 { padding: 1.25rem; }
}
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:inline-block { display: inline-block; }
    .md\:hidden { display: none; }
    .md\:pt-36 { padding-top: 9rem; }
    .md\:pb-32 { padding-bottom: 8rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:w-1\/2 { width: 50%; }
    .md\:\!left-0 { left: 0px !important; }
    .md\:\!right-0 { right: 0px !important; }
    #resize-handle { display: block !important; }
    .md\:w-\[480px\] { width: 480px; }
}
@media (max-width: 640px) {
    #resize-handle { display: none !important; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .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\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:items-stretch { align-items: stretch; }
    .lg\:items-start { align-items: flex-start; }
    .lg\:pt-14 { padding-top: 3.5rem; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* SVG */
.fill-current { fill: currentColor; }
.stroke-width-\[1\.5\] { stroke-width: 1.5; }

/* Misc */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-24 { margin-top: 6rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; 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\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.invisible { visibility: hidden; }
.\!relative { position: relative !important; }
.opacity-0 { opacity: 0; }

/* Swiper Overrides */
.swiper-button-next, .swiper-button-prev {
    display: none;
    width: 44px;
    height: 44px;
    background-color: rgba(30, 34, 42, 0.8);
    border: 1px solid #2a303a;
    border-radius: 9999px;
    color: #fff;
    transition: all 0.2s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--color-brand);
    color: var(--color-dark-base);
    border-color: var(--color-brand);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}
.swiper-pagination-bullet {
    background-color: #6b7280;
    opacity: 0.5;
    transition: all 0.2s ease;
}
.swiper-pagination-bullet-active {
    background-color: var(--color-brand);
    opacity: 1;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .swiper-button-next, .swiper-button-prev { display: flex; }
}