@charset "UTF-8";
/*
 * Rails Application Styles with Tailwind CSS
 * Migrating from legacy styles to Tailwind utilities
 */
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pswp__button:focus, .pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: none;
  opacity: 0.9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/assets/default-skin-da0d39006180801b522b3f8c52372d9a30bf9b8436ae6365964387d63a1c1c92.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/assets/default-skin-f0c54371092ad8637f01b184b59f88b4dd5734095f7d74177141dd8d46f3c6b9.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000; }

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0; }

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }

.pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(/assets/preloader-bf53509f32991c52bbd97a8de22f6d74eba2cdbd488093e41663a72cf3c797c5.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

:root {
  --color-primary: #9333ea;
  --color-primary-rgb: 147, 51, 234;
  --color-primary-dark: #7b2cbf;
  --color-primary-light: #a855f7;
  --color-accent: #00ffff;
  --color-accent-rgb: 0, 255, 255;
  --color-accent-dark: #00cccc;
  --color-accent-light: #66ffff;
  --color-secondary: #ff69b4;
  --color-secondary-rgb: 255, 105, 180;
  --color-success: #10b981;
  --color-warning: #fbbf24;
  --color-error: #f87171;
  --color-info: #06b6d4;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --sidebar-bg: rgba(0, 0, 0, 0.85);
  --sidebar-width: 256px;
  --sidebar-width-mobile: 85vw;
  --sidebar-border-open: #00ffff;
  --sidebar-border-closed: #FF1493;
  --font-primary: 'Inter var', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;
  --font-display: 'Impact', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --duration-instant: 0ms;
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;
  --duration-slower: 1000ms;
  --duration-animation-short: 3s;
  --duration-animation-normal: 6s;
  --duration-animation-long: 15s;
  --duration-animation-infinite: 60s;
  --easing-linear: linear;
  --easing-ease: ease;
  --easing-ease-in: ease-in;
  --easing-ease-out: ease-out;
  --easing-ease-in-out: ease-in-out;
  --easing-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --easing-spring: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --glow-primary: 0 0 20px rgba(var(--color-primary-rgb), 0.5);
  --glow-accent: 0 0 20px rgba(var(--color-accent-rgb), 0.5);
  --glow-warning: 0 0 20px rgba(251, 191, 36, 0.5);
  --glow-button-hover: 0 0 25px rgba(var(--color-accent-rgb), 0.6),
                       0 0 35px rgba(var(--color-accent-rgb), 0.3);
  --border-width: 1px;
  --border-width-thick: 2px;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 9999px;
  --z-below: -1;
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-overlay: 30;
  --z-modal: 40;
  --z-sidebar: 50;
  --z-popover: 60;
  --z-tooltip: 70;
  --z-notification: 80;
  --z-top: 100;
  --transition-all: all var(--duration-normal) var(--easing-smooth);
  --transition-colors: background-color var(--duration-normal) var(--easing-smooth),
                       border-color var(--duration-normal) var(--easing-smooth),
                       color var(--duration-normal) var(--easing-smooth);
  --transition-transform: transform var(--duration-normal) var(--easing-smooth);
  --transition-opacity: opacity var(--duration-normal) var(--easing-ease);
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px; }

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
    --duration-animation-short: 0ms;
    --duration-animation-normal: 0ms;
    --duration-animation-long: 0ms; } }

@media (max-width: 768px) {
  :root {
    --sidebar-width: var(--sidebar-width-mobile);
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem; } }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(1.05);
    opacity: 0.8; } }

@keyframes fade-in-out {
  0%, 100% {
    opacity: 0.3; }
  50% {
    opacity: 1; } }

@keyframes twinkle {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1); }
  50% {
    opacity: 1;
    transform: scale(1.2); } }

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

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

@keyframes gradient-wave {
  0%, 100% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; } }

@keyframes gradient-wave-optimized {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes wave-distort-simple {
  0%, 100% {
    transform: translateY(0) scaleY(1); }
  50% {
    transform: translateY(-5px) scaleY(1.05); } }

@keyframes shimmer {
  0% {
    background-position: -1000px 0; }
  100% {
    background-position: 1000px 0; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px currentColor; }
  50% {
    box-shadow: 0 0 20px currentColor, 0 0 30px currentColor; } }

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
  will-change: transform; }

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
  will-change: transform, opacity; }

.animate-spin {
  animation: spin-fast 1s linear infinite;
  will-change: transform; }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; }
  .animate-bounce,
  .animate-pulse,
  .animate-spin,
  .animate-spin-slow {
    animation: none; } }

.gpu-accelerate {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px; }

.will-change-transform {
  will-change: transform; }

.will-change-opacity {
  will-change: opacity; }

.will-change-auto {
  will-change: auto; }

.contain-layout {
  contain: layout; }

.contain-paint {
  contain: paint; }

.contain-strict {
  contain: strict; }

.text-gradient-zimbobway {
  background: linear-gradient(135deg, var(--color-primary) 0%, #E86A33 20%, #A4C441 40%, #5FA4A0 60%, #4A7B4A 80%, var(--color-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite; }

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; }

.text-shadow-glow {
  text-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.5), 0 0 40px rgba(var(--color-primary-rgb), 0.3); }

.border-gradient-zimbobway {
  position: relative;
  background: var(--color-black);
  background-clip: padding-box;
  border: 2px solid transparent; }
  .border-gradient-zimbobway::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-primary), #E86A33, #A4C441, #5FA4A0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; }

.glow-primary {
  box-shadow: var(--glow-primary); }

.glow-accent {
  box-shadow: var(--glow-accent); }

.glow-warning {
  box-shadow: var(--glow-warning); }

.glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite; }

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); }

.glass-dark {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); }

.glass-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); }

.hover-lift {
  transition: transform var(--duration-normal) var(--easing-spring); }
  .hover-lift:hover {
    transform: translate3d(0, -4px, 0); }

.hover-grow {
  transition: transform var(--duration-normal) var(--easing-spring); }
  .hover-grow:hover {
    transform: scale3d(1.05, 1.05, 1); }

.hover-glow {
  transition: box-shadow var(--duration-normal) var(--easing-smooth); }
  .hover-glow:hover {
    box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.5); }

.hover-wiggle:hover {
  animation: wiggle 0.5s ease-in-out; }

.hover-bounce:hover {
  animation: bounce 0.5s ease-in-out; }

.click-shrink {
  transition: transform var(--duration-fast) var(--easing-spring); }
  .click-shrink:active {
    transform: scale3d(0.95, 0.95, 1); }

.skeleton {
  @apply bg-gray-800 animate-pulse rounded;
  background: linear-gradient(90deg, var(--color-gray-800) 25%, var(--color-gray-700) 50%, var(--color-gray-800) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite; }

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0; }
  100% {
    background-position: -200% 0; } }

.spinner {
  border: 2px solid var(--color-gray-700);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin-slow 1s linear infinite; }

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

.safe-padding-bottom {
  padding-bottom: 1rem;
  padding-bottom: env(safe-area-inset-bottom, 1rem); }

.space-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl); }

.space-content {
  padding: var(--space-xl); }

.gap-responsive {
  gap: var(--space-md); }
  @media (min-width: 768px) {
    .gap-responsive {
      gap: var(--space-lg); } }
  @media (min-width: 1024px) {
    .gap-responsive {
      gap: var(--space-xl); } }
.smooth-scroll {
  scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    .smooth-scroll {
      scroll-behavior: auto; } }
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .scrollbar-hide::-webkit-scrollbar {
    display: none; }

.scrollbar-thin {
  scrollbar-width: thin; }
  .scrollbar-thin::-webkit-scrollbar {
    width: 6px;
    height: 6px; }
  .scrollbar-thin::-webkit-scrollbar-track {
    background: var(--color-gray-900); }
  .scrollbar-thin::-webkit-scrollbar-thumb {
    background: var(--color-gray-700);
    border-radius: 3px; }
    .scrollbar-thin::-webkit-scrollbar-thumb:hover {
      background: var(--color-gray-600); }

.invisible-until-hover {
  opacity: 0;
  transition: opacity var(--duration-normal) var(--easing-smooth); }
  .invisible-until-hover:hover {
    opacity: 1; }

.fade-in {
  animation: fade-in-optimized 0.5s ease-in forwards; }

.slide-up {
  animation: slide-up-optimized 0.3s ease-out forwards; }

@keyframes slide-up-optimized {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.text-responsive {
  font-size: var(--text-base); }
  @media (min-width: 768px) {
    .text-responsive {
      font-size: var(--text-lg); } }
  @media (min-width: 1024px) {
    .text-responsive {
      font-size: var(--text-xl); } }
.text-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1; }

.text-mono {
  font-family: var(--font-mono);
  font-size: 0.9em; }

.text-balance {
  text-wrap: balance; }

.interactive {
  @apply cursor-pointer select-none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.draggable {
  cursor: move;
  cursor: grab; }
  .draggable:active {
    cursor: grabbing; }

.disabled {
  @apply opacity-50 cursor-not-allowed pointer-events-none; }

.focus-ring:focus {
  outline: none;
  ring: 2px solid var(--color-primary);
  ring-offset: 2px;
  ring-offset-color: var(--color-black); }

.focus-glow:focus {
  @apply outline-none;
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.5); }

@media (min-width: 768px) {
  .mobile-only {
    display: none !important; } }

@media (max-width: 767px) {
  .desktop-only {
    display: none !important; } }

.aspect-cinema {
  aspect-ratio: 21 / 9; }

.aspect-ultrawide {
  aspect-ratio: 32 / 9; }

.aspect-golden {
  aspect-ratio: 1.618 / 1; }

@media print {
  .no-print {
    display: none !important; }
  .print-only {
    display: block !important; } }

.debug-box {
  outline: 1px solid red !important; }

.debug-spacing {
  outline: 1px solid blue !important; }
  .debug-spacing > * {
    outline: 1px solid green !important; }

.gpu-accelerate {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform; }

.gpu-accelerate-complete {
  will-change: auto; }

.hw-accelerate {
  transform: translateZ(0);
  -webkit-transform: translateZ(0); }

.contain-layout {
  contain: layout; }

.contain-paint {
  contain: paint; }

.contain-style {
  contain: style; }

.contain-strict {
  contain: strict; }

.contain-content {
  contain: content; }

.content-auto {
  content-visibility: auto;
  contain-intrinsic-size: auto 300px; }

.content-hidden {
  content-visibility: hidden; }

.content-visible {
  content-visibility: visible; }

[data-lazy]:not(.loaded) {
  @apply bg-gray-900 animate-pulse;
  min-height: 200px; }

.loaded[data-lazy] {
  @apply bg-transparent;
  animation: none; }

[data-animate]:not(.in-view) {
  opacity: 0;
  transform: translate3d(0, 20px, 0); }

.in-view[data-animate] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity var(--duration-normal) var(--easing-smooth), transform var(--duration-normal) var(--easing-smooth); }

.perf-critical {
  will-change: opacity, transform; }

.perf-non-critical {
  will-change: auto;
  contain: layout style; }

.perf-static {
  will-change: auto;
  contain: strict; }

.transition-gpu {
  transition-property: transform, opacity;
  transition-duration: var(--duration-normal);
  transition-timing-function: var(--easing-smooth);
  transform: translate3d(0, 0, 0); }

.transition-opacity-only {
  transition-property: opacity;
  transition-duration: var(--duration-normal);
  transition-timing-function: var(--easing-ease); }

.transition-transform-only {
  transition-property: transform;
  transition-duration: var(--duration-normal);
  transition-timing-function: var(--easing-smooth);
  transform: translate3d(0, 0, 0); }

.scroll-smooth {
  scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    .scroll-smooth {
      scroll-behavior: auto; } }
.scroll-snap-x {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; }
  .scroll-snap-x > * {
    scroll-snap-align: start; }

.scroll-snap-y {
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch; }
  .scroll-snap-y > * {
    scroll-snap-align: start; }

.img-lazy {
  background: linear-gradient(to right, var(--color-gray-900) 0%, var(--color-gray-800) 50%, var(--color-gray-900) 100%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite; }

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

.font-loading {
  font-display: swap; }

.font-optional {
  font-display: optional; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; }
  .gpu-accelerate,
  .hw-accelerate {
    transform: none;
    will-change: auto; } }

@media print {
  .no-print {
    display: none !important; }
  * {
    animation: none !important;
    transition: none !important; } }

.sidebar-toggle-btn {
  width: 60px;
  height: 60px;
  left: 16px;
  z-index: 60;
  transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: left, transform, border-color; }
  .sidebar-toggle-btn.closed {
    border-color: #fde047;
    box-shadow: 0 0 15px rgba(253, 224, 71, 0.4); }
    .sidebar-toggle-btn.closed:hover {
      box-shadow: 0 0 25px rgba(253, 224, 71, 0.6), 0 0 35px rgba(253, 224, 71, 0.3); }
  .sidebar-toggle-btn.open {
    left: 240px;
    border-color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); }
    .sidebar-toggle-btn.open:hover {
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 35px rgba(0, 255, 255, 0.3); }

.hamburger-bar {
  display: block;
  width: 2rem;
  height: 0.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease; }
  .hamburger-bar.cyan {
    background: #00FFFF;
    box-shadow: 0 0 10px #00FFFF; }
  .hamburger-bar.pink {
    background: #FF69B4;
    box-shadow: 0 0 10px #FF69B4; }
  .hamburger-bar.brown {
    background: #8B4513;
    box-shadow: 0 0 10px #8B4513; }
  .hamburger-bar:hover:first-child {
    width: 2.25rem; }
  .hamburger-bar:hover:nth-child(2) {
    width: 1.75rem; }
  .hamburger-bar:hover:last-child {
    width: 2.25rem; }

.back-arrow svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.back-arrow:hover svg {
  transform: translateX(-3px); }

.arrow-nav-btn {
  transition: box-shadow 0.3s ease, transform 0.3s ease; }
  .arrow-nav-btn:hover {
    box-shadow: 0 0 25px rgba(253, 224, 71, 0.6), 0 0 35px rgba(253, 224, 71, 0.3) !important; }

.video-screen-border {
  transition: box-shadow 0.3s ease; }

.star-decoration {
  position: absolute;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform, opacity; }
  .star-decoration-sm {
    width: 16px;
    height: 16px; }
  .star-decoration-md {
    width: 20px;
    height: 20px; }
  .star-decoration-lg {
    width: 24px;
    height: 24px; }
  .star-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.starry-element {
  position: absolute;
  opacity: 0.2;
  transition: opacity 0.5s ease; }
  .starry-element:hover {
    opacity: 0.4; }
  .starry-element img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.nav-section-header {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace; }
  .nav-section-header.purple {
    color: #c084fc;
    text-shadow: 0 0 10px #9333ea; }
  .nav-section-header.cyan {
    color: #67e8f9;
    text-shadow: 0 0 10px cyan; }
  .nav-section-header.pink {
    color: #f9a8d4;
    text-shadow: 0 0 10px #FF00FF; }
  .nav-section-header.lime {
    color: #bef264;
    text-shadow: 0 0 10px lime; }
  .nav-section-header.red {
    color: #f87171;
    text-shadow: 0 0 10px red; }

.gradient-divider {
  margin-top: 1rem;
  height: 0.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 9999px; }
  .gradient-divider .gradient-bar {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fbbf24, #ec4899, #06b6d4);
    background-size: 200% 100%;
    animation: gradient-wave 3s linear infinite; }

.floating-logo-wrapper {
  display: inline-block;
  position: relative;
  z-index: 50;
  perspective: 1000px; }
  .floating-logo-wrapper .logo-container {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
    .floating-logo-wrapper .logo-container:hover {
      transform: rotateY(15deg) rotateX(-10deg) translateZ(20px); }
  .floating-logo-wrapper .logo-shadow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    transform: translateZ(-50px) scale(0.9); }
  .floating-logo-wrapper .logo-image {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 40px rgba(253, 224, 71, 0.4), 0 0 80px rgba(253, 224, 71, 0.2); }

.starry-background-optimized {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0; }
  .starry-background-optimized::before, .starry-background-optimized::after {
    content: '';
    position: absolute;
    inset: 0; }
  .starry-background-optimized::before {
    background-image: radial-gradient(2px 2px at 20% 30%, #00ffff 0%, transparent 70%), radial-gradient(1px 1px at 40% 70%, #ff69b4 0%, transparent 70%), radial-gradient(2px 2px at 60% 20%, #fbbf24 0%, transparent 70%), radial-gradient(1px 1px at 80% 60%, #a78bfa 0%, transparent 70%), radial-gradient(2px 2px at 15% 80%, #10b981 0%, transparent 70%), radial-gradient(1px 1px at 70% 40%, #f87171 0%, transparent 70%), radial-gradient(2px 2px at 35% 50%, #06b6d4 0%, transparent 70%), radial-gradient(1px 1px at 90% 10%, #ec4899 0%, transparent 70%);
    background-size: 200px 200px, 300px 300px,  250px 250px, 350px 350px, 400px 400px, 320px 320px, 280px 280px, 380px 380px;
    animation: stars-drift 60s linear infinite;
    opacity: 0.6; }
  .starry-background-optimized::after {
    background-image: radial-gradient(3px 3px at 25% 45%, #fbbf24 0%, transparent 60%), radial-gradient(2px 2px at 55% 85%, #a78bfa 0%, transparent 60%), radial-gradient(3px 3px at 75% 25%, #10b981 0%, transparent 60%), radial-gradient(2px 2px at 45% 65%, #f87171 0%, transparent 60%);
    background-size: 450px 450px, 500px 500px, 420px 420px, 480px 480px;
    animation: stars-drift 90s linear infinite reverse;
    opacity: 0.4; }

@keyframes stars-drift {
  from {
    transform: translateX(0) translateY(0); }
  to {
    transform: translateX(-100px) translateY(-100px); } }

.floating-icon {
  position: absolute;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  pointer-events: none; }
  .floating-icon:hover {
    opacity: 0.5; }
  .floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    width: 20px;
    height: 20px;
    animation: float-drift 15s ease-in-out infinite; }
  .floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    width: 24px;
    height: 24px;
    animation: spin-slow 20s linear infinite; }
  .floating-icon:nth-child(3) {
    top: 60%;
    left: 20%;
    width: 18px;
    height: 18px;
    animation: pulse-glow 10s ease-in-out infinite; }
  .floating-icon:nth-child(4) {
    top: 80%;
    right: 25%;
    width: 22px;
    height: 22px;
    animation: wobble 8s ease-in-out infinite; }
  .floating-icon:nth-child(5) {
    top: 45%;
    left: 50%;
    width: 20px;
    height: 20px;
    animation: bounce-gentle 12s ease-in-out infinite; }
  .floating-icon:nth-child(6) {
    top: 70%;
    left: 5%;
    width: 19px;
    height: 19px;
    animation: float-drift 18s ease-in-out infinite reverse; }
  .floating-icon:nth-child(7) {
    top: 25%;
    left: 35%;
    width: 21px;
    height: 21px;
    animation: wobble 10s ease-in-out infinite; }
  .floating-icon:nth-child(8) {
    top: 85%;
    left: 45%;
    width: 23px;
    height: 23px;
    animation: spin-slow 25s linear infinite reverse; }
  .floating-icon:nth-child(9) {
    top: 10%;
    right: 30%;
    width: 20px;
    height: 20px;
    animation: pulse-glow 12s ease-in-out infinite; }
  .floating-icon:nth-child(10) {
    top: 55%;
    right: 10%;
    width: 22px;
    height: 22px;
    animation: bounce-gentle 15s ease-in-out infinite; }
  .floating-icon:nth-child(11) {
    top: 40%;
    left: 25%;
    width: 18px;
    height: 18px;
    animation: float-drift 20s ease-in-out infinite; }
  .floating-icon:nth-child(12) {
    top: 75%;
    right: 45%;
    width: 24px;
    height: 24px;
    animation: wobble 9s ease-in-out infinite reverse; }
  .floating-icon:nth-child(13) {
    top: 20%;
    left: 60%;
    width: 21px;
    height: 21px;
    animation: spin-slow 22s linear infinite; }
  .floating-icon:nth-child(14) {
    top: 65%;
    left: 65%;
    width: 19px;
    height: 19px;
    animation: pulse-glow 14s ease-in-out infinite; }
  .floating-icon:nth-child(15) {
    top: 90%;
    left: 15%;
    width: 20px;
    height: 20px;
    animation: bounce-gentle 13s ease-in-out infinite reverse; }
  .floating-icon:nth-child(16) {
    top: 5%;
    left: 45%;
    width: 22px;
    height: 22px;
    animation: float-drift 16s ease-in-out infinite; }
  .floating-icon:nth-child(17) {
    top: 35%;
    right: 5%;
    width: 19px;
    height: 19px;
    animation: spin-slow 19s linear infinite; }
  .floating-icon:nth-child(18) {
    top: 50%;
    left: 75%;
    width: 23px;
    height: 23px;
    animation: pulse-glow 11s ease-in-out infinite; }
  .floating-icon:nth-child(19) {
    top: 12%;
    right: 40%;
    width: 20px;
    height: 20px;
    animation: wobble 14s ease-in-out infinite reverse; }
  .floating-icon:nth-child(20) {
    top: 78%;
    left: 30%;
    width: 21px;
    height: 21px;
    animation: bounce-gentle 17s ease-in-out infinite; }
  .floating-icon:nth-child(21) {
    top: 28%;
    left: 55%;
    width: 18px;
    height: 18px;
    animation: float-drift 21s ease-in-out infinite reverse; }
  .floating-icon:nth-child(22) {
    top: 95%;
    right: 35%;
    width: 24px;
    height: 24px;
    animation: spin-slow 16s linear infinite reverse; }
  .floating-icon:nth-child(23) {
    top: 42%;
    right: 20%;
    width: 20px;
    height: 20px;
    animation: pulse-glow 13s ease-in-out infinite; }
  .floating-icon:nth-child(24) {
    top: 8%;
    left: 70%;
    width: 22px;
    height: 22px;
    animation: wobble 11s ease-in-out infinite; }
  .floating-icon:nth-child(25) {
    top: 62%;
    right: 55%;
    width: 19px;
    height: 19px;
    animation: bounce-gentle 19s ease-in-out infinite reverse; }
  .floating-icon:nth-child(26) {
    top: 18%;
    left: 80%;
    width: 21px;
    height: 21px;
    animation: float-drift 14s ease-in-out infinite; }
  .floating-icon:nth-child(27) {
    top: 88%;
    right: 8%;
    width: 20px;
    height: 20px;
    animation: spin-slow 23s linear infinite; }
  .floating-icon:nth-child(28) {
    top: 33%;
    left: 12%;
    width: 23px;
    height: 23px;
    animation: pulse-glow 15s ease-in-out infinite; }
  .floating-icon:nth-child(29) {
    top: 52%;
    right: 32%;
    width: 18px;
    height: 18px;
    animation: wobble 12s ease-in-out infinite reverse; }
  .floating-icon:nth-child(30) {
    top: 7%;
    left: 25%;
    width: 22px;
    height: 22px;
    animation: bounce-gentle 16s ease-in-out infinite; }
  .floating-icon:nth-child(31) {
    top: 73%;
    right: 18%;
    width: 19px;
    height: 19px;
    animation: float-drift 18s ease-in-out infinite reverse; }
  .floating-icon:nth-child(32) {
    top: 46%;
    left: 38%;
    width: 24px;
    height: 24px;
    animation: spin-slow 21s linear infinite reverse; }
  .floating-icon:nth-child(33) {
    top: 14%;
    right: 48%;
    width: 20px;
    height: 20px;
    animation: pulse-glow 17s ease-in-out infinite; }
  .floating-icon:nth-child(34) {
    top: 67%;
    left: 8%;
    width: 21px;
    height: 21px;
    animation: wobble 13s ease-in-out infinite; }
  .floating-icon:nth-child(35) {
    top: 92%;
    right: 28%;
    width: 18px;
    height: 18px;
    animation: bounce-gentle 20s ease-in-out infinite reverse; }
  .floating-icon:nth-child(36) {
    top: 22%;
    left: 48%;
    width: 22px;
    height: 22px;
    animation: float-drift 19s ease-in-out infinite; }
  .floating-icon:nth-child(37) {
    top: 58%;
    right: 62%;
    width: 19px;
    height: 19px;
    animation: spin-slow 17s linear infinite; }
  .floating-icon:nth-child(38) {
    top: 38%;
    left: 72%;
    width: 23px;
    height: 23px;
    animation: pulse-glow 16s ease-in-out infinite reverse; }
  .floating-icon:nth-child(39) {
    top: 83%;
    right: 42%;
    width: 20px;
    height: 20px;
    animation: wobble 15s ease-in-out infinite; }
  .floating-icon:nth-child(40) {
    top: 3%;
    left: 58%;
    width: 21px;
    height: 21px;
    animation: bounce-gentle 14s ease-in-out infinite; }
  .floating-icon:nth-child(n+41) {
    display: none; }

@media (prefers-reduced-motion: reduce) {
  .starry-background-optimized::before, .starry-background-optimized::after {
    animation: none; }
  .floating-icon {
    animation: none !important; } }

@media (max-width: 768px) {
  .starry-background-optimized::before {
    background-image: radial-gradient(2px 2px at 20% 30%, #00ffff 0%, transparent 70%), radial-gradient(1px 1px at 60% 70%, #ff69b4 0%, transparent 70%), radial-gradient(2px 2px at 40% 20%, #fbbf24 0%, transparent 70%);
    background-size: 300px 300px, 400px 400px,  350px 350px; }
  .starry-background-optimized::after {
    display: none; }
  .floating-icon:nth-child(n+3) {
    display: none; } }

.gallery-container {
  @apply relative w-full;
  contain: layout style; }

.gallery-grid-optimized {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  @media (min-width: 640px) {
    .gallery-grid-optimized {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } }
  @media (min-width: 1024px) {
    .gallery-grid-optimized {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } }
.gallery-item-optimized {
  @apply relative aspect-square overflow-hidden rounded-lg cursor-pointer;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  contain: layout paint; }
  .gallery-item-optimized::before {
    content: '';
    @apply absolute inset-0 bg-gradient-to-t from-black/50 via-transparent to-transparent;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--easing-smooth); }
  .gallery-item-optimized:hover::before {
    opacity: 1; }

.gallery-thumbnail-optimized {
  @apply w-full h-full object-cover;
  transform: scale3d(1, 1, 1);
  transition: transform var(--duration-slow) var(--easing-smooth);
  will-change: transform; }
  .gallery-item-optimized:hover .gallery-thumbnail-optimized {
    transform: scale3d(1.1, 1.1, 1); }

.gallery-lazy-load {
  @apply bg-gray-900 animate-pulse; }
  .gallery-lazy-load.loaded {
    @apply bg-transparent;
    animation: none; }

.pswp--open .gallery-item-optimized {
  will-change: auto; }

.gallery-preload {
  content-visibility: auto;
  contain-intrinsic-size: 300px; }

.gallery-virtual-item {
  min-height: 300px;
  content-visibility: auto; }

.gallery-loading {
  @apply relative; }
  .gallery-loading::after {
    content: '';
    @apply absolute inset-0 bg-gray-900/50;
    animation: pulse-optimized 2s infinite; }

[data-gallery-item]:not(.in-view) .gallery-thumbnail-optimized {
  transform: scale3d(0.95, 0.95, 1);
  opacity: 0.7; }

.in-view[data-gallery-item] .gallery-thumbnail-optimized {
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.form-container {
  @apply max-w-2xl mx-auto;
  contain: layout style; }

.form-field {
  @apply relative mb-6; }
  .form-field.form-field-floating .form-label {
    @apply absolute left-4 top-2 text-sm text-gray-500 pointer-events-none;
    transition: all var(--duration-fast) var(--easing-smooth);
    transform-origin: left top; }
  .form-field.form-field-floating .form-input:focus ~ .form-label,
  .form-field.form-field-floating .form-input:not(:placeholder-shown) ~ .form-label {
    transform: translate3d(0, -1.5rem, 0) scale(0.85);
    @apply text-zimbobway-purple; }
  .form-field.form-field-floating .form-input {
    @apply pt-6 pb-2; }

.form-input-optimized {
  @apply w-full px-4 py-3 bg-gray-900/50 border border-gray-700 rounded-lg;
  @apply text-white placeholder-gray-500;
  @apply transition-all duration-300;
  backdrop-filter: blur(10px); }
  .form-input-optimized:focus {
    @apply bg-gray-900 border-zimbobway-purple outline-none;
    @apply ring-2 ring-zimbobway-purple/30;
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 4px 12px rgba(123, 59, 174, 0.15); }
  .form-input-optimized:disabled {
    @apply opacity-50 cursor-not-allowed; }
  .form-input-optimized.form-input-error {
    @apply border-red-500; }
    .form-input-optimized.form-input-error:focus {
      @apply ring-red-500/30; }
  .form-input-optimized.form-input-success {
    @apply border-green-500; }
    .form-input-optimized.form-input-success:focus {
      @apply ring-green-500/30; }

.form-textarea {
  @apply w-full px-4 py-3 bg-gray-900/50 border border-gray-700 rounded-lg;
  @apply text-white placeholder-gray-500;
  @apply transition-all duration-300;
  backdrop-filter: blur(10px);
  resize: vertical;
  min-height: 100px; }
  .form-textarea:focus {
    @apply bg-gray-900 border-zimbobway-purple outline-none;
    @apply ring-2 ring-zimbobway-purple/30;
    transform: translate3d(0, -1px, 0);
    box-shadow: 0 4px 12px rgba(123, 59, 174, 0.15);
    min-height: 150px; }

.form-select-optimized {
  @apply w-full px-4 py-3 bg-gray-900/50 border border-gray-700 rounded-lg;
  @apply text-white placeholder-gray-500;
  @apply transition-all duration-300;
  backdrop-filter: blur(10px);
  @apply cursor-pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem; }

.form-checkbox-container {
  @apply flex items-center space-x-3 cursor-pointer; }
  .form-checkbox-container .form-checkbox {
    @apply w-5 h-5 bg-gray-900 border-2 border-gray-600 rounded;
    @apply transition-all duration-200;
    transform: scale3d(1, 1, 1); }
    .form-checkbox-container .form-checkbox:checked {
      @apply bg-zimbobway-purple border-zimbobway-purple;
      transform: scale3d(1.1, 1.1, 1); }
      .form-checkbox-container .form-checkbox:checked::after {
        content: '✓';
        @apply text-white text-xs flex items-center justify-center;
        animation: fade-in-optimized 0.2s ease-in; }
    .form-checkbox-container .form-checkbox:focus {
      @apply ring-2 ring-zimbobway-purple/50 ring-offset-2 ring-offset-gray-900; }
  .form-checkbox-container .form-checkbox-label {
    @apply text-gray-300 select-none; }

.form-radio-group {
  @apply space-y-3; }

.form-radio-container {
  @apply flex items-center space-x-3 cursor-pointer; }
  .form-radio-container .form-radio {
    @apply w-5 h-5 bg-gray-900 border-2 border-gray-600 rounded-full;
    @apply transition-all duration-200; }
    .form-radio-container .form-radio:checked {
      @apply bg-zimbobway-purple border-zimbobway-purple;
      box-shadow: inset 0 0 0 3px var(--color-black); }
    .form-radio-container .form-radio:focus {
      @apply ring-2 ring-zimbobway-purple/50 ring-offset-2 ring-offset-gray-900; }
  .form-radio-container .form-radio-label {
    @apply text-gray-300 select-none; }

.form-button-group {
  @apply flex flex-wrap gap-4 mt-8; }

.form-submit-optimized {
  @apply px-6 py-3 bg-gradient-to-r from-zimbobway-purple to-zimbobway-orange;
  @apply text-white font-semibold rounded-lg;
  @apply transition-all duration-300;
  transform: translate3d(0, 0, 0);
  position: relative;
  overflow: hidden; }
  .form-submit-optimized::before {
    content: '';
    @apply absolute inset-0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.6s; }
  .form-submit-optimized:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 20px rgba(123, 59, 174, 0.3); }
    .form-submit-optimized:hover::before {
      transform: translate3d(100%, 0, 0); }
  .form-submit-optimized:active {
    transform: translate3d(0, 0, 0); }
  .form-submit-optimized:disabled {
    @apply opacity-50 cursor-not-allowed;
    transform: none !important; }
    .form-submit-optimized:disabled:hover {
      box-shadow: none; }

.form-error-message {
  @apply text-red-400 text-sm mt-1 flex items-center;
  animation: fade-in-optimized 0.3s ease-in; }
  .form-error-message::before {
    content: '⚠';
    @apply mr-1; }

.form-success-message {
  @apply text-green-400 text-sm mt-1 flex items-center;
  animation: fade-in-optimized 0.3s ease-in; }
  .form-success-message::before {
    content: '✓';
    @apply mr-1; }

.form-loading {
  @apply relative pointer-events-none; }
  .form-loading::after {
    content: '';
    @apply absolute inset-0 bg-gray-900/50 flex items-center justify-center;
    animation: fade-in-optimized 0.3s ease-in; }

.sidebar-wavy {
  background: linear-gradient(135deg, var(--color-primary) 0%, #E86A33 25%, #A4C441 50%, #5FA4A0 75%, var(--color-primary) 100%);
  background-size: 400% 400%;
  animation: gradient-wave-optimized var(--duration-animation-long) ease infinite;
  position: relative;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform, background-position; }
  .sidebar-wavy::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -29px;
    width: 30px;
    pointer-events: none;
    background: inherit;
    background-size: 100% 400%;
    animation: wave-distort-simple 4s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 2%, 95% 10%, 100% 20%, 92% 30%, 100% 40%, 95% 50%, 100% 60%, 92% 70%, 100% 80%, 95% 90%, 100% 100%, 0% 100%); }
  .sidebar-wavy::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -28px;
    width: 30px;
    background: black;
    pointer-events: none;
    clip-path: polygon(29px 0%, 30px 2%, 28px 10%, 30px 20%, 27px 30%, 30px 40%, 28px 50%, 30px 60%, 27px 70%, 30px 80%, 28px 90%, 30px 100%, 30px 100%); }
  @media (prefers-reduced-motion: reduce) {
    .sidebar-wavy {
      animation: none;
      background-size: 100% 100%; }
      .sidebar-wavy::before, .sidebar-wavy::after {
        animation: none; } }
@keyframes wave-distort-simple {
  0%, 100% {
    transform: translate3d(0, 0, 0); }
  25% {
    transform: translate3d(2px, 0, 0); }
  50% {
    transform: translate3d(-1px, 0, 0); }
  75% {
    transform: translate3d(1px, 0, 0); } }

@keyframes gradient-wave-optimized {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 200% 50%; } }

.abstract-field-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden; }
  .abstract-field-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #7B3BAE, #E86A33, #A4C441, #5FA4A0, #4A7B4A, #E699C7);
    background-size: 300% 300%;
    animation: gradient-wave 8s ease infinite;
    border-radius: 1rem;
    z-index: -1; }
  .abstract-field-container .abstract-field-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden; }
  .abstract-field-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair; }
    .abstract-field-container canvas:hover {
      cursor: pointer; }
  .abstract-field-container .abstract-field-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none; }
    .abstract-field-container .abstract-field-text .glitch-text {
      font-family: 'Courier New', monospace;
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #00ffff;
      text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 2px 2px 0 #ff00ff, -2px -2px 0 #ffff00;
      animation: pulse-glow 3s ease-in-out infinite; }
  .abstract-field-container:hover::before {
    animation-duration: 4s; }

@media (max-width: 768px) {
  .abstract-field-container {
    max-width: 90vw; }
    .abstract-field-container .abstract-field-text .glitch-text {
      font-size: 1rem; } }

@media (prefers-reduced-motion: reduce) {
  .abstract-field-container::before {
    animation: none;
    background: linear-gradient(135deg, #7B3BAE, #5FA4A0); }
  .abstract-field-container .abstract-field-text .glitch-text {
    animation: none;
    text-shadow: 0 0 10px #00ffff; } }

.gallery-container {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(0.5rem);
  padding: 2rem;
  padding-bottom: 5rem;
  border: 4px solid #67e8f9;
  border-radius: 1rem 1rem 0 0;
  min-height: 600px;
  overflow: visible;
  background-image: radial-gradient(ellipse 400px 300px at 15% 20%, rgba(0, 255, 255, 0.12) 0%, transparent 50%), radial-gradient(ellipse 500px 360px at 85% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%), radial-gradient(ellipse 350px 280px at 50% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(ellipse 600px 400px at 90% 90%, rgba(139, 92, 246, 0.06) 0%, transparent 50%); }
  @media (max-width: 768px) {
    .gallery-container {
      padding: 1rem;
      padding-bottom: 3rem;
      border-radius: 0.5rem 0.5rem 0 0;
      background-image: radial-gradient(ellipse 200px 150px at 15% 20%, rgba(0, 255, 255, 0.12) 0%, transparent 50%), radial-gradient(ellipse 250px 180px at 85% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%); } }
.video-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 0 0 20px rgba(118, 75, 162, 0.3); }
  @media (max-width: 768px) {
    .video-container {
      padding: 1rem;
      border-radius: 0.5rem; } }
.audio-container {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(240, 147, 251, 0.4), 0 0 20px rgba(245, 87, 108, 0.3); }
  @media (max-width: 768px) {
    .audio-container {
      padding: 1rem;
      border-radius: 0.5rem; } }
.video-player {
  width: 350px;
  max-width: none;
  aspect-ratio: 9/16; }
  @media (max-width: 768px) {
    .video-player {
      width: 100%;
      max-width: 350px; } }
.border-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease; }
  .border-glow.glow-purple {
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4); }
    .border-glow.glow-purple:hover {
      box-shadow: 0 0 25px rgba(147, 51, 234, 0.6), 0 0 35px rgba(147, 51, 234, 0.3);
      transform: translateY(-2px); }
  .border-glow.glow-blue {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
    .border-glow.glow-blue:hover {
      box-shadow: 0 0 25px rgba(59, 130, 246, 0.6), 0 0 35px rgba(59, 130, 246, 0.3);
      transform: translateY(-2px); }
  .border-glow.glow-pink {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4); }
    .border-glow.glow-pink:hover {
      box-shadow: 0 0 25px rgba(236, 72, 153, 0.6), 0 0 35px rgba(236, 72, 153, 0.3);
      transform: translateY(-2px); }
  .border-glow.glow-cyan {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4); }
    .border-glow.glow-cyan:hover {
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.6), 0 0 35px rgba(6, 182, 212, 0.3);
      transform: translateY(-2px); }
  .border-glow.glow-green {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
    .border-glow.glow-green:hover {
      box-shadow: 0 0 25px rgba(34, 197, 94, 0.6), 0 0 35px rgba(34, 197, 94, 0.3);
      transform: translateY(-2px); }

body {
  @apply bg-black text-white;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.5; }

pre {
  @apply bg-gray-900 rounded-lg p-4 text-xs overflow-x-auto;
  font-family: var(--font-mono); }

a {
  @apply text-zimbobway-purple transition-colors duration-300; }
  a:visited {
    @apply text-zimbobway-violet; }
  a:hover {
    @apply text-white bg-zimbobway-purple/20 rounded px-1; }

th {
  @apply pb-2 font-semibold text-left; }

td {
  @apply px-2 py-1; }

div.field,
div.actions {
  @apply mb-4; }

#notice {
  @apply text-green-500 bg-green-500/10 border border-green-500/30 rounded-lg px-4 py-3 mb-4; }

.field_with_errors {
  @apply inline-block; }
  .field_with_errors input, .field_with_errors textarea, .field_with_errors select {
    @apply border-2 border-red-500 ring-2 ring-red-500/30; }

#error_explanation {
  @apply max-w-xl border-2 border-red-500 rounded-lg overflow-hidden mb-6 bg-gray-900; }
  #error_explanation h2 {
    @apply text-left font-bold px-4 py-3 text-sm bg-red-500 text-white; }
  #error_explanation ul {
    @apply px-4 py-3; }
    #error_explanation ul li {
      @apply text-sm text-red-400 list-disc list-inside; }

label {
  @apply block text-sm font-medium mb-2 text-gray-300; }

#photo_collection {
  width: 200px;
  height: 50px;
  @apply rounded-md border border-gray-700 bg-gray-900 transition-all duration-300; }
  #photo_collection:focus {
    @apply border-zimbobway-purple ring-2 ring-zimbobway-purple/50; }

.actions {
  @apply mt-8 space-y-2; }

#photo_picture {
  @apply w-52 mt-4 cursor-pointer; }

label[for="photo_picture"] {
  @apply mt-4 text-white font-medium; }

.audio-title {
  color: #ba9576; }

.audio-artist {
  color: #2c768a; }

.sidebar-wavy {
  background: var(--sidebar-bg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  will-change: transform;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-width);
  z-index: var(--z-sidebar);
  transform: translate3d(calc(var(--sidebar-width) * -1), 0, 0);
  transition: transform var(--duration-slow) var(--easing-smooth), opacity var(--duration-normal) var(--easing-smooth), border-right var(--duration-slow) var(--easing-smooth);
  border-right: 3px solid transparent;
  backface-visibility: hidden;
  perspective: 1000px; }
  .sidebar-wavy.sidebar-open {
    transform: translate3d(0, 0, 0);
    border-right: 3px solid var(--sidebar-border-closed); }
  .sidebar-wavy > .p-6 {
    transform: scale3d(0.95, 0.95, 1);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    will-change: transform, opacity; }
  .sidebar-wavy.sidebar-open > .p-6 {
    transform: scale3d(1, 1, 1);
    opacity: 1;
    will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .sidebar-wavy::before,
  .sidebar-wavy::after,
  .star-decoration {
    animation: none; } }

.star-decoration {
  position: absolute;
  animation: twinkle var(--animation-duration-twinkle) ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity; }

#hamburger-icon,
#back-arrow {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

#hamburger-icon span {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }

#back-arrow svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

#sidebar-toggle:hover #back-arrow svg {
  transform: translateX(-3px); }

.nav-link-wavy {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding-left 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden; }
  .nav-link-wavy:hover {
    transform: translate3d(8px, 0, 0);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%); }
  .nav-link-wavy.active-nav-link {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(0, 200, 255, 0.2) 50%, rgba(100, 150, 255, 0.15) 100%);
    border-left: 3px solid #00FFFF;
    padding-left: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.15);
    font-weight: 600; }
    .nav-link-wavy.active-nav-link:hover {
      transform: translate3d(8px, 0, 0);
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), inset 0 0 20px rgba(0, 255, 255, 0.2); }
  @media (hover: none) {
    .nav-link-wavy:active {
      transform: translateX(5px);
      background: rgba(255, 255, 255, 0.1); } }
/* Ensure sidebar is hidden by default even if JS fails */
#sidebar {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  transition: transform var(--duration-slow) var(--easing-smooth), opacity var(--duration-normal) var(--easing-smooth);
  will-change: transform, opacity; }

#sidebar.sidebar-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform var(--duration-slow) var(--easing-smooth), opacity var(--duration-slow) var(--easing-smooth) 0.1s;
  will-change: auto; }

/* Smooth button animations */
#sidebar-toggle {
  transition: left var(--duration-slow) var(--easing-smooth), transform var(--duration-normal) var(--easing-spring), box-shadow var(--duration-normal) var(--easing-ease); }

#sidebar-toggle {
  box-shadow: 0 0 15px rgba(253, 224, 71, 0.4); }

#sidebar-toggle:hover {
  box-shadow: 0 0 25px rgba(253, 224, 71, 0.6), 0 0 35px rgba(253, 224, 71, 0.3); }

#sidebar-toggle.sidebar-open-button {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); }

#sidebar-toggle.sidebar-open-button:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 35px rgba(0, 255, 255, 0.3); }

@media (max-width: 640px) {
  :root {
    --sidebar-width: 85vw; }
  .sidebar-wavy {
    width: var(--sidebar-width) !important;
    max-width: 320px !important; } }

.body {
  width: 50%;
  margin: 0 auto;
  text-align: left; }

#dear {
  font-size: 140%;
  color: #741ce5;
  margin-top: 7%;
  margin-right: 40%; }

#intro {
  font-size: 140%;
  color: #741ce5;
  margin-right: 40%;
  width: 100%; }

#bulk {
  font-size: 140%;
  color: #741ce5;
  margin-right: 40%;
  width: 100%; }

#best {
  font-size: 140%;
  color: #741ce5;
  margin-top: 3%;
  margin-right: 40%; }

#signature {
  font-size: 140%;
  color: #741ce5;
  margin-right: 40%;
  width: 100%; }

@media only screen and (max-width: 800px) {
  .body {
    width: 80%; } }

.body {
  margin-top: 20%; }

.body p {
  color: #741ce5;
  font-size: 24px; }

.login-form {
  margin-top: 15%; }

.login-btn-container {
  margin-top: 2%; }

.login-btn {
  width: 100px;
  height: 50px; }

.login-email-field, .login-password-field {
  width: 300px;
  height: 50px;
  margin-bottom: 2%;
  text-align: center; }

.login-email-label, .login-password-label {
  margin-bottom: 2%; }

.login-email-label {
  color: #20d5cc; }

.login-password-label {
  color: #e892e9; }

html, body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter var', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.container {
  max-width: 56rem;
  /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center; }

.header {
  margin-bottom: 2rem;
  /* mb-8 */ }

.video-container {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto; }

@media (min-width: 1024px) {
  .sidebar-offset {
    margin-left: 16rem;
    /* 256px = w-64 */ } }

.pswp__button--fs {
  display: block !important; }

@media (max-width: 768px) {
  .pswp--touch .pswp__button--arrow--left,
  .pswp--touch .pswp__button--arrow--right {
    visibility: visible !important;
    opacity: 0.75; }
  .pswp__button--arrow--left,
  .pswp__button--arrow--right {
    width: 60px;
    height: 120px; }
  .pswp__button--arrow--left:before,
  .pswp__button--arrow--right:before {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px; } }
