/* ==========================================================================
   Base Styles & Resets
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;700&display=swap');

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
       user-select: none;
       -webkit-tap-highlight-color: transparent;
   }
   
   :root {
       --footer-height: 60px;
       --theme-color: #FF6600;
       --max-content-width: 1024px;
       --parallax: 15%; /* 0（完全連動） ~ 50（固定） */
   }
   
   html, body {
       height: 100%;
   }
   
   body {
       background: #000;
       color: #333;
       line-height: 1.6;
   }

   a:link {
    color: var(--theme-color);
   }

   a:visited {
    color: #aaa;
   }