body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0b0c2a;
  color: #000;
}
/* Page Title */
header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

header h1 {
  color: #f0f0f0;
  font-size: 2.5rem;
}

/* Mock Test Container */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}


.mock-box {
  background-color: #1f1359;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  border-left: 6px solid #1e3a8a;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mock-box h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #469df6;
}

.mock-box a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #1e3a8a;
  color: #f0f0f0;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.mock-box p{
  color: #f0f0f0;
}

.mock-box a:hover {
  background-color: #2946b5;
}

/* Footer */
footer {
  background-color: #1f1359;
  color: #f0f0f0;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
.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;
}

.back-button-right a:hover {
background-color: #2946b5;
}

  /* Practice Section */
  .practice-section {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    max-width: 800px;
    background-color: #1f1359;
    border-radius: 10px;
    border: 1px solid #56a9ff;
  }

  .practice-section-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .practice-section h4 {
    color: #56a9ff;
    font-size: 1.4rem;
  }

  .practice-section p {
    color: #f0f0f0;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .practice-section a {
    display: inline-block;
    background-color: #56a9ff;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
  }

  .practice-section a:hover {
    background-color: #0d47a1;
  }

  /* Footer */
  footer {
    background-color: #140d3c;
    color: #f0f0f0;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
  }
    .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);
  }
