.liquid-ether-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  touch-action: none;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.liquid-ether-container canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
  mix-blend-mode: screen;
}

/* Для лучшей интеграции с Pinterest дизайном */
.container {
  position: relative;
  z-index: 10;
}

.download-card {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header, .footer {
  position: relative;
  z-index: 15;
}

.result-card, .error-card, .progress-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
  .liquid-ether-container canvas {
    opacity: 0.5;
  }

  .download-card {
    background: rgba(255, 255, 255, 0.9);
  }
}

/* Поддержка доступности */
@media (prefers-reduced-motion: reduce) {
  .liquid-ether-container {
    display: none;
  }
}

/* Улучшение производительности на低端 устройствах */
@media (max-resolution: 1dppx) {
  .liquid-ether-container canvas {
    opacity: 0.4;
  }
}