/* style.css */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base Styles */
  html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e1e, #3e3e3e);
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  
  /* Loader Styles with Pencil Drawing & Break-Off */
  #loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: loaderBreakOff 3s forwards;
  }
  .loader-svg {
    width: 50%;
    max-width: 300px;
    height: auto;
  }
  .draw-line {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawLine 3s forwards;
  }
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }
  .loader-text {
    margin-top: 1rem;
    color: #5F7FFF;
    font-size: 1.2rem;
    letter-spacing: 1px;
    animation: fadeText 3s forwards;
  }
  @keyframes fadeText {
    from { opacity: 1; }
    to { opacity: 0; }
  }
  @keyframes loaderBreakOff {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-100px) scale(0.8); }
  }
  
  /* Continuous Background Animations */
  .bg-animation {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95,127,255,0.3) 0%, rgba(0,0,0,0) 70%);
    animation: moveBackground 20s infinite alternate;
    z-index: 0;
  }
  @keyframes moveBackground {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
  }
  .bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .bg-particles::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%235F7FFF"/><circle cx="50" cy="70" r="3" fill="%235F7FFF"/><circle cx="90" cy="40" r="1.5" fill="%235F7FFF"/><circle cx="130" cy="150" r="2.5" fill="%235F7FFF"/><circle cx="170" cy="80" r="2" fill="%235F7FFF"/></svg>') repeat;
    animation: moveParticles 40s linear infinite;
    opacity: 0.3;
  }
  @keyframes moveParticles {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, -100px); }
  }
  
  /* Main Container (Centered) */
  .container {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  /* Reveal Overlay (Wipes Away Like a Pencil Stroke) */
  .reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 2;
    animation: reveal 3s forwards;
  }
  @keyframes reveal {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
  }
  
  /* Confirmation Card - Mod Style */
  .confirmation-card {
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(95,127,255,0.5);
    animation: cardFadeIn 1.5s ease-out;
    border: 1px solid #5F7FFF;
  }
  @keyframes cardFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  .confirmation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="none" stroke="%235F7FFF" stroke-width="0.5" opacity="0.2"><line x1="0" y1="0" x2="100" y2="100"/><line x1="100" y1="0" x2="0" y2="100"/></svg>') repeat;
    border-radius: 10px;
    pointer-events: none;
  }
  
  /* Headings and Text */
  h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #000;
    color: #5F7FFF;
  }
  p {
    font-size: 1.1rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 3px #000;
  }
  a {
    color: #5F7FFF;
    text-decoration: none;
    font-weight: bold;
  }
  a:hover {
    text-decoration: underline;
  }
  
  /* Custom Button Style */
  .button-container {
    margin-top: 1.5rem;
  }
  .button-container a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #5F7FFF, #7a9fff);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(95,127,255,0.7);
    transition: transform 0.3s ease;
  }
  .button-container a:hover {
    transform: scale(1.1);
  }
  .button-container a img {
    display: block;
    border: none;
    border-radius: 5px;
  }
  