/*
  IMPORTANT: This application MUST be placed in the /ai folder.
  Server access URL will be ip/ai
  DO NOT change this path structure under any circumstances.
*/
/*
  Index Page Main Styles - Modularized
  This file imports all index-related CSS modules
*/

/* Import Index CSS Modules */
@import url('./index-layout.css');
@import url('./index-cards.css');
@import url('./index-voice.css');
@import url('./index-animation.css');

/*
  Remaining utility styles that don't fit in specific modules
*/

/* Fade-in animation keyframes */
@keyframes fadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 