/* ---- YOUR FULL CSS (UNCHANGED) ---- */
:root {
  --bg: #0a0a0a;
  --ink: #f5efe6;
  --muted: #c4b8a7;
  --orange: #FF6A00;
  --orange2: #ff7e22;
  --shadow: 0 20px 60px rgba(0, 0, 0, .7);
  --maxw: 1100px;
}
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  z-index: 100;
}
nav .logo {
  font-family: "Lobster Two", cursive;
  color: var(--orange);
  font-size: 1.9rem;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.auth-btn {
  background: var(--orange);
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}
.auth-btn:hover {
  background: var(--orange2);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
}
.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.8rem;
  z-index: 90;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  width: 100%;
  text-align: center;
  transition: 0.2s ease;
}
.mobile-menu a:hover {
  color: var(--orange);
  background: rgba(255,106,0,0.12);
}
.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-top: 110px;
}
.hero {
  width: 100%;
  max-width: var(--maxw);
  text-align: center;
}
.title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.title-icon {
  height: 110px;
  width: auto;
}
.wordmark {
  font-family: "Lobster Two", cursive;
  font-weight: 700;
  font-size: clamp(42px, 7.8vw, 88px);
  color: var(--orange);
  text-shadow: 0 10px 40px rgba(255,106,0,.22);
  margin: 0;
}
.subtitle {
  color: var(--muted);
  margin: 10px 0 20px;
  font-size: 18px;
}
.card {
  background: linear-gradient(180deg, #0e0f12, #0b0c0e);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.uploader {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}
.dropzone {
  border: 2px dashed rgba(255,255,255,.18);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.dropzone:hover {
  border-color: rgba(255,255,255,.32);
  transform: translateY(-1px);
}
.dz-text-main {
  font-weight: 600;
  font-size: 0.98rem;
}
.dz-text-sub {
  margin-top: 2px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
}
.submit {
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(255,106,0,.32);
  transition: transform .12s, filter .12s;
}
.submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.fineprint {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}
.fineprint a {
  color: var(--orange2);
  text-decoration: none;
}
.fineprint a:hover {
  text-decoration: underline;
}
footer {
  text-align: center;
  margin-top: 60px;
  opacity: .55;
  font-size: 0.8rem;
}

/* AUTH MODAL */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.auth-modal.open {
  display: flex;
}
.auth-box {
  background: #111;
  padding: 24px 22px 20px;
  width: 320px;
  max-width: 92vw;
  border-radius: 14px;
  border: 1px solid rgba(255,106,0,0.5);
  position: relative;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8);
}
.close-auth {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 22px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}
.close-auth:hover {
  color: #fff;
}
.auth-box h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}
.auth-box p.sub {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.auth-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0 14px;
  background: #202020;
  border: 1px solid #333;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.9rem;
}
.auth-box input:focus {
  outline: 1px solid var(--orange);
  border-color: var(--orange);
}
.auth-submit {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  color: #000;
  margin-top: 4px;
}
.auth-info { margin-top: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.auth-info a { color: var(--orange); }
.auth-switch { margin-top: 10px; font-size: 0.85rem; color: var(--muted); }
.auth-switch span { color: var(--orange); cursor: pointer; font-weight: 600; }


/* ================================ */
/* RESPONSIVE */
/* ================================ */
@media (max-width: 700px) {
  nav .nav-links,
  nav .auth-buttons { display: none; }
  .hamburger { display: flex; }
  .page { padding-top: 90px; }
  .title-wrap { flex-direction: row; gap: 12px; }
  .title-icon { height: 90px; }
  .wordmark { font-size: 48px; }
  .card { padding: 16px; }
  .uploader { grid-template-columns: 1fr; }
}


/* ================================ */
/* 🚀  EMAIL VERIFICATION BANNER  */
/* ================================ */

.verify-banner {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #201000;
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 10px;
  font-size: 0.85rem;
  z-index: 150;
  border-bottom: 1px solid rgba(255,106,0,0.4);
}
.verify-banner.show {
  display: flex;
}
.verify-btn {
  background: var(--orange);
  border: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  color: #000;
}
.verify-btn:hover {
  background: var(--orange2);
}
.verify-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 8px;
}
.verify-close:hover {
  color: #fff;
}


/* ================================ */
/* 🚀  TOAST NOTIFICATIONS  */
/* ================================ */

.status-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255,106,0,0.6);
  font-size: 0.86rem;
  opacity: 0;
  pointer-events: none;
  color: var(--ink);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}
.status-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* ================================ */
/* 🎉 CONFETTI CANVAS */
/* ================================ */

/* Your entire stylesheet exactly as before — unchanged */
/* No modifications needed */

#confettiCanvas {
  position: fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:5000;
}

