/* ClipMimic — theme.css */
/* Additional page-level styles supplement the partial CSS */

/* Ensure smooth font loading */
html { font-size: 16px; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

/* Selection color */
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--white);
}

/* Smooth image scaling */
img { max-width: 100%; height: auto; }

/* Link hover states */
a:hover { opacity: 0.8; }
