 /* CSS变量和基础重置 */
 :root {
   --primary-color: #4361ee;
   --secondary-color: #3a0ca3;
   --accent-color: #f72585;
   --dark-color: #1a1a2e;
   --light-color: #f8f9fa;
   --gray-color: #6c757d;
   --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   --border-radius: 12px;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
   font-size: 16px;
 }

 body {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
   line-height: 1.6;
   color: var(--dark-color);
   background: var(--light-color);
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }

 a[href="https://alvarotrigo.com/fullPage/"] {
   display: none !important;
 }