/* Dark Neon Pixel Theme */
:root {
  --bg: #000000; /* pure black background */
  --panel: #0f0f10; /* neutral dark panel */
  --panel-2: #0b0b0c;
  --text: #f2f2f2; /* off-white text to reduce greenness */
  --muted: #c8c8c8; /* muted gray */
  --neon: #39ff14; /* neon green (kept for pixel animation/accent) */
  --neon-2: #00ff88;
  --border: #202224;
  --link: #e6e6e6; /* neutral link */
  --link-hover: #ffffff; /* white on hover */
}

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

/* Floating neon pixel particles */
body::before {
  content: "";
  position: fixed;
  top: 110%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--neon);
  /* Generate many pixels using box-shadow */
  box-shadow:
    -480px -10vh 0 0 rgba(57,255,20,0.9),
    -420px -30vh 0 0 rgba(57,255,20,0.7),
    -360px -50vh 0 0 rgba(57,255,20,0.85),
    -300px -70vh 0 0 rgba(57,255,20,0.6),
    -240px -20vh 0 0 rgba(57,255,20,0.8),
    -180px -60vh 0 0 rgba(57,255,20,0.9),
    -120px -40vh 0 0 rgba(57,255,20,0.7),
    -60px  -80vh 0 0 rgba(57,255,20,0.9),
    0px    -15vh 0 0 rgba(57,255,20,0.8),
    60px   -55vh 0 0 rgba(57,255,20,0.85),
    120px  -75vh 0 0 rgba(57,255,20,0.7),
    180px  -25vh 0 0 rgba(57,255,20,0.9),
    240px  -65vh 0 0 rgba(57,255,20,0.75),
    300px  -35vh 0 0 rgba(57,255,20,0.8),
    360px  -85vh 0 0 rgba(57,255,20,0.9),
    420px  -45vh 0 0 rgba(57,255,20,0.7),
    480px  -5vh  0 0 rgba(57,255,20,0.85),
    -510px -90vh 0 0 rgba(57,255,20,0.6),
    -450px -35vh 0 0 rgba(57,255,20,0.9),
    -390px -15vh 0 0 rgba(57,255,20,0.75),
    -330px -95vh 0 0 rgba(57,255,20,0.8),
    -270px -45vh 0 0 rgba(57,255,20,0.85),
    -210px -25vh 0 0 rgba(57,255,20,0.7),
    -150px -5vh  0 0 rgba(57,255,20,0.9),
    -90px  -95vh 0 0 rgba(57,255,20,0.8),
    -30px  -65vh 0 0 rgba(57,255,20,0.6),
    30px   -45vh 0 0 rgba(57,255,20,0.85),
    90px   -25vh 0 0 rgba(57,255,20,0.7),
    150px  -5vh  0 0 rgba(57,255,20,0.9),
    210px  -95vh 0 0 rgba(57,255,20,0.75),
    270px  -65vh 0 0 rgba(57,255,20,0.8),
    330px  -45vh 0 0 rgba(57,255,20,0.9),
    390px  -25vh 0 0 rgba(57,255,20,0.7),
    450px  -85vh 0 0 rgba(57,255,20,0.85),
    510px  -15vh 0 0 rgba(57,255,20,0.8);
  z-index: -2;
  filter: drop-shadow(0 0 8px rgba(57,255,20,0.35));
  transform: translate(-50%, 0);
  animation: floatUp 18s linear infinite;
  opacity: 0.8;
}

/* Soft neon vignette glow */
body::after {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(57,255,20,0.12) 0%, rgba(0,0,0,0) 60%);
  filter: blur(30px);
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes floatUp {
  0% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translate(-50%, -120vh) scale(1); opacity: 0.2; }
}
@keyframes pulse { from { opacity: 0.5; } to { opacity: 1; } }

/* Links */
a { text-decoration: none; color: var(--link); }
a:hover { color: var(--link-hover); text-shadow: 0 0 6px rgba(57,255,20,0.5); }

/* Container */
.container { max-width: 1000px; margin: 0 auto; padding: 16px; }
.container.small { max-width: 800px; }

/* Header */
header {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(2px);
}
.header-content h1 { font-size: 28px; margin-bottom: 6px; letter-spacing: 1px; }
.highlight { color: #ffffff; text-shadow: 0 0 10px rgba(57,255,20,0.35); }
header p { font-size: 14px; margin-bottom: 12px; color: var(--muted); }

.main-nav { display: flex; flex-wrap: wrap; gap: 12px; }
.main-nav a { color: var(--text); font-weight: 600; border: 1px solid transparent; padding: 6px 10px; border-radius: 8px; }
.main-nav a:hover { border-color: rgba(255,255,255,0.35); box-shadow: 0 0 10px rgba(255,255,255,0.12); }

/* Section Titles */
.section-title { font-size: 22px; margin-bottom: 12px; color: lightgreen; text-shadow: 0 0 8px rgba(255,255,255,0.08); }

/* Cards */
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.35);
}

/* Landing hero */
.hero .card { border-color: rgba(255,255,255,0.15); }
.benefits-list { list-style: none; display: grid; gap: 10px; }
.benefits-list li i { color: var(--neon); margin-right: 8px; }

/* Resources grid */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.resource-tile {
  display: flex; align-items: center; gap: 10px; padding: 14px; border-radius: 10px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--border);
}
.resource-tile i { font-size: 22px; color: var(--neon); }
.resource-tile:hover { border-color: rgba(255,255,255,0.25); box-shadow: 0 0 14px rgba(255,255,255,0.12); }

/* Competition card */
.competition-card h3 { margin-bottom: 6px; }

/* Prize Styling */
.total-prize { font-weight: 700; color: limegreen; }
.prize-amount { font-size: 28px; font-weight: 800; color: limegreen; margin: 8px 0; text-shadow: 0 0 10px rgba(255,255,255,0.12); }
.dollar-sign { font-size: 16px; vertical-align: top; }

/* Guidelines */
.guidelines-list { list-style: none; padding-left: 0; }
.guidelines-list li { margin-bottom: 12px; }
.guidelines-list h3 { font-size: 16px; margin-bottom: 4px; color: var(--link-hover); }
.guidelines-list ul { margin-left: 16px; list-style: disc; padding-left: 16px; color: var(--muted); }

/* Criteria */
.criteria-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.criteria-item { flex: 1 1 30%; background: var(--panel); padding: 12px; border: 1px solid var(--border); border-radius: 8px; }

/* Example */
.example-section .example-link { display: inline-block; margin-top: 8px; color: var(--link); font-weight: 600; }

/* Buttons */
.submission-button {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-weight: 700;
  margin-top: 8px;
  text-shadow: none;
}
.submission-button:hover { box-shadow: 0 0 16px rgba(255,255,255,0.15); color: var(--text); border-color: rgba(255,255,255,0.4); }

/* Footer */
footer { background: rgba(0,0,0,0.4); color: var(--muted); padding: 16px 0; text-align: center; font-size: 14px; border-top: 1px solid var(--border); }
footer .social-links a { margin: 0 8px; color: var(--muted); font-size: 18px; }
footer .social-links a:hover { color: var(--text); }

/* Header layout */
.logo-title-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.55); box-shadow: 0 0 12px rgba(255,255,255,0.08); }

/* Misc */
#winners ul { padding-left: 40px; }

/* Submission counter styling */
.submission-counter { color: var(--text); font-weight: 600; }
.submission-counter-big { font-size: 40px; font-weight: 800; color: var(--text); letter-spacing: 0.5px; text-shadow: 0 0 18px rgba(57,255,20,0.22); margin: 8px 0 16px; display: block; }

/* Green money styling */
.glow-money {
  color: #228B22;
  font-weight: 700;
}


  
  
