/* Dark Theme Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
  }
  
  .container {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: fadeUp 0.8s ease-in-out forwards;
  }
  
  /* Headings */
  h1, h2 {
    color: #03dac6;
    margin-top: 30px;
  }
  
  /* Paragraphs and Lists */
  p, ul {
    line-height: 1.8;
  }
  
  ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  /* Fade-in Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  .delay-4 { animation-delay: 0.8s; }
  .delay-5 { animation-delay: 1s; }
  .delay-6 { animation-delay: 1.2s; }
  .delay-7 { animation-delay: 1.4s; }
  .delay-8 { animation-delay: 1.6s; }
  .delay-9 { animation-delay: 1.8s; }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .container {
      margin: 30px 15px;
      padding: 20px;
    }
  }
  .home-button {
    position: fixed;
    top: 20px;
    right: 30px;
    text-decoration: none;
    background-color: #03dac6;
    color: #121212;
    padding: 5px 9px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .home-button:hover {
    background-color: #00c4b4;
    transform: scale(1.05);
  }
  