.vixviu-3d-fakery {
  width: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.vixviu-3d-fakery canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  outline: none;
  border-radius: 0;
  background: transparent;
}

.vixviu-3d-fakery canvas:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Loading and error states */
.vixviu-3d-fakery .loading,
.vixviu-3d-fakery .error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.vixviu-3d-fakery .loading {
  color: #666;
  background: transparent;
}

.vixviu-3d-fakery .error {
  color: #d63638;
  background: #fef7f1;
  border: 1px solid #d63638;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .vixviu-3d-fakery {
    min-height: 150px;
  }
  
  .vixviu-3d-fakery .loading,
  .vixviu-3d-fakery .error {
    min-height: 150px;
    font-size: 13px;
    padding: 15px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .vixviu-3d-fakery canvas:focus {
    outline: 3px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .vixviu-3d-fakery canvas {
    animation: none;
  }
}
