  :root {
    --slc-pink: #ff3399;
    --slc-purple: #8e44ad;
    --slc-blue: #0099ff;
  }

  body {
    font-family: 'Prompt', sans-serif;
    color: #2d3436;
    background: #ffffff;
  }

  #canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f7ff 50%, #fffdf0 100%);
  }

  .font-900 {
    font-weight: 900 !important;
  }

  .font-800 {
    font-weight: 800 !important;
  }

  .font-700 {
    font-weight: 700 !important;
  }

  .font-600 {
    font-weight: 600 !important;
  }

  .hero-gradient {
    background: linear-gradient(to right, var(--slc-pink), var(--slc-purple), var(--slc-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.1em;
  }

  .glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .objective-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .objective-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
  }

  .symbol {
    position: absolute;
    font-size: 3.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    pointer-events: none;
    opacity: 0;
  }

  /* Global Page Fade-in Animation */
  @keyframes pageFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  main {
    animation: pageFadeIn 0.8s ease-out forwards;
  }