.scroll-indicator {
    margin-top: 1em;
    text-align: center;
    animation: fadeIn 2s ease forwards;
  }
  
  .scroll-indicator .arrow {
    font-size: 2em;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  