* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: #8E2DE2;
  color: #fff;
  overflow-x: hidden; /* prevents horizontal scroll bugs */
}

header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: #8E2DE2;
      position: relative;
    }

    .logo {
      font-size: 18px;
      font-weight: bold;
    }

    /* NAV */
    nav {
      display: flex;
      gap: 15px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      padding: 5px 10px;
    }

    nav a:hover {
      color: #FFF;
      text-decoration: none;
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #fff;
    }

    /* MOBILE MENU */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 10px 0;
      }

      nav.show {
        display: flex;
      }
    }

    /* CONTENT */
    .container {
      padding: 20px;
    }

    h1 {
      margin-bottom: 10px;
    }

    p {
      color: #ccc;
      line-height: 1.6;
    }

/* BACKGROUND CANVAS */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ---------- HEADER ---------- */
.header {
  text-align: center;
}

.header img {
  height: 300px;
  width: 600px;
  max-width: 100%; /* prevents overflow */
}

.top-banner {
  width: 100%;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;

  /* Background (matches your purple theme) */
  background: linear-gradient(90deg, #4a00e0, #8e2de2);

  /* Text */
  color: #fff;

  /* Glow effect */
  text-shadow:
    0 0 5px #fff,
    0 0 10px #00eaff,
    0 0 20px #00eaff,
    0 0 40px #00eaff;

  /* Optional smooth animation */
  animation: glowPulse 2s infinite alternate;
}

/* Glow animation */
@keyframes glowPulse {
  from {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #00eaff,
      0 0 20px #00eaff;
  }
  to {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #00eaff,
      0 0 40px #00eaff,
      0 0 60px #00eaff;
  }
}

h1 {
      text-align: center;
      color: #00ffc3;
      text-shadow: 0 0 10px #00ffc3;
      margin-bottom: 10px;
    }

    p.subtitle {
      text-align: center;
      color: #aaa;
      margin-bottom: 30px;
    }

    .card {
      background: #16162a;
      border: 1px solid #2a2a40;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,255,195,0.08);
    }

    label {
      display: block;
      margin-top: 15px;
      margin-bottom: 6px;
      color: #00ffc3;
      font-size: 14px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #2a2a40;
      background: #0f0f1a;
      color: #fff;
      outline: none;
    }

    textarea {
      resize: none;
      height: 140px;
    }

    .hint {
      font-size: 12px;
      color: #888;
      margin-top: 5px;
    }

    .file-box {
      border: 2px dashed #2a2a40;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 10px;
      cursor: pointer;
      color: #aaa;
      transition: 0.3s;
    }

    .file-box:hover {
      border-color: #00ffc3;
      color: #00ffc3;
    }

    button {
      margin-top: 20px;
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 8px;
      background: #00ffc3;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #00cfa3;
    }

    .note {
      text-align: center;
      color: #aaa;
      font-size: 13px;
      margin-bottom: 20px;
    }