/* VerseX Theme — No external dependencies, all self-contained */

/* The layout uses inline styles primarily; theme.css adds global polish */

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Remove default link underline */
a { text-decoration: none; }

/* Custom selection color */
::selection { background: rgba(184, 255, 0, 0.25); color: var(--text); }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body { font-size: 15px; }
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
}