body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0c2a;
    color: white;
  }
  h1 {
    margin-bottom: 40px;
    color: #ffcb58;
    text-align: center;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .card {
    background-color: #1f1359;
    border: 1px solid #333;
    border-radius: 16px;
    width: 280px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  }

  .card h2 {
    color: #ffcb58;
    margin-bottom: 15px;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ccc;
  }

  .card a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcb58;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .card a:hover {
    background-color: #fbda94;
  }

  footer {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #1f1359;
    border-top: 2px solid #233554;
  }
  .back-button-right {
    display: flex;
    justify-content: flex-end;
    max-width: 900px;
    margin: 0 auto 1rem auto;
    padding-right: 1.5rem; /* matches padding of file-actions */
  }
  
  .back-button-right a {
    padding: 0.5rem 1.2rem;
    background-color: #1e3a8a;
    color: #f0f0f0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
  }
.glowing-spots {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .glowing-spots span {
      position: absolute;
      display: block;
      width: 30px;
      height: 30px;
      background: radial-gradient(circle, #806aed, transparent 70%);
      border-radius: 50%;
      animation: moveGlow 20s linear infinite;
      opacity: 0.5;
      filter: blur(8px);
    }

    @keyframes moveGlow {
      0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0.2;
      }

      50% {
        opacity: 0.8;
      }

      100% {
        transform: translateY(-100vh) translateX(50vw) scale(1);
        opacity: 0;
      }
    }
    .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    margin-left: -20px; /* half width */
    margin-top: -20px;  /* half height */
    border-radius: 50%;
    pointer-events: none;
    background: rgba(134, 110, 237, 0.6);
    box-shadow: 0 0 8px 4px rgba(134, 110, 237, 0.7);
    transition: transform 0.1s ease-out;
    mix-blend-mode: screen;
    z-index: 9999;
    transform: translate3d(0, 0, 0);
  }
