/* File: nowaste-submission-assets.css */
.nowaste-submission-wrapper {
  --black: #000000;
  --light-blue: #00c8ff;
  --cyan: #00e5ff;
  --white: #ffffff;
  --dark-blue: #0077b6;
  --accent-yellow: #ffdd00;
  --bg-deep: #050816;
  --bg-section: #0a1128;
  --text-muted: #9bb0c9;
  --border-soft: rgba(0, 200, 255, 0.18);
  --shadow-glow: 0 0 40px rgba(0, 200, 255, 0.25);
  --radius-lg: 20px;
  --radius-md: 12px;
  --container: 1180px;

  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.7;
}

.nowaste-submission-wrapper h1,
.nowaste-submission-wrapper h2,
.nowaste-submission-wrapper h3,
.nowaste-submission-wrapper h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
}
.nowaste-submission-wrapper a {
  color: var(--cyan);
  text-decoration: none;
}
.nowaste-submission-wrapper .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nowaste-submission-wrapper .text-yellow {
  color: var(--accent-yellow);
}
.nowaste-submission-wrapper .text-cyan {
  color: var(--cyan);
}

/* Decorative Stars */
.nowaste-submission-wrapper .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 200px 80px, rgba(0, 229, 255, 0.7), transparent),
    radial-gradient(1px 1px at 500px 50px, rgba(255, 221, 0, 0.6), transparent);
  background-size: 800px 600px;
  background-repeat: repeat;
  opacity: 0.5;
}

/* BUTTONS */
.nowaste-submission-wrapper .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nowaste-submission-wrapper .btn-primary {
  background: var(--accent-yellow);
  color: var(--black);
}
.nowaste-submission-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 221, 0, 0.35);
}
.nowaste-submission-wrapper .btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--cyan);
}
.nowaste-submission-wrapper .btn-outline:hover {
  background: var(--cyan);
  color: var(--black);
}

/* PAGE HERO */
.nowaste-submission-wrapper .page-hero {
  padding: 80px 0 50px;
  background: radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 221, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #02050f 0%, #050816 60%, #060c1f 100%);
  position: relative;
}
.nowaste-submission-wrapper .crumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.nowaste-submission-wrapper .crumbs a {
  color: var(--text-muted);
}
.nowaste-submission-wrapper .page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  margin-bottom: 14px;
}
.nowaste-submission-wrapper .page-hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan), var(--accent-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nowaste-submission-wrapper .page-hero p.lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 780px;
}

/* DEADLINE BANNER */
.nowaste-submission-wrapper .deadline-banner {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 221, 0, 0.14), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(255, 221, 0, 0.45);
}
.nowaste-submission-wrapper .deadline-banner .left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nowaste-submission-wrapper .deadline-banner .icon-cal {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.nowaste-submission-wrapper .deadline-banner h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.nowaste-submission-wrapper .deadline-banner p {
  color: var(--text-muted);
  font-size: 14px;
}
.nowaste-submission-wrapper .deadline-banner .countdown {
  display: flex;
  gap: 10px;
}
.nowaste-submission-wrapper .cd-cell {
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 62px;
}
.nowaste-submission-wrapper .cd-cell .v {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 22px;
  color: var(--accent-yellow);
  line-height: 1;
}
.nowaste-submission-wrapper .cd-cell .l {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* LAYOUT & TOC */
.nowaste-submission-wrapper .layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  padding: 60px 0 100px;
  align-items: flex-start;
}
.nowaste-submission-wrapper .toc {
  position: sticky;
  top: 84px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 255, 0.04);
  border: 1px solid var(--border-soft);
}
.nowaste-submission-wrapper .toc h4 {
  font-size: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.nowaste-submission-wrapper .toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nowaste-submission-wrapper .toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nowaste-submission-wrapper .toc .badge {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 11px;
}
.nowaste-submission-wrapper .toc a:hover,
.nowaste-submission-wrapper .toc a.active {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
}
.nowaste-submission-wrapper .toc a.active .badge {
  background: var(--cyan);
  color: var(--black);
}

/* CONTENT MODULES */
.nowaste-submission-wrapper .article-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nowaste-submission-wrapper .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.nowaste-submission-wrapper .info-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 22, 0.6);
  border: 1px solid var(--border-soft);
}
.nowaste-submission-wrapper .info-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nowaste-submission-wrapper .info-card h3 .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--dark-blue));
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}
.nowaste-submission-wrapper .info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nowaste-submission-wrapper .info-card li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 14.5px;
}
.nowaste-submission-wrapper .info-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
}

/* FILES & DECK */
.nowaste-submission-wrapper .file-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.nowaste-submission-wrapper .file-tile {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 255, 0.06);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.nowaste-submission-wrapper .file-tile .ic-big {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5757, #c2185b);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  font-family: 'Space Grotesk';
  font-size: 14px;
}
.nowaste-submission-wrapper .file-tile .ic-big.alt {
  background: linear-gradient(135deg, #7d6cff, #3a2fb0);
}
.nowaste-submission-wrapper .deck-intro {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 22, 0.6);
  border: 1px solid var(--border-soft);
}

/* STEPS */
.nowaste-submission-wrapper .step-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nowaste-submission-wrapper .step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 22, 0.6);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s, transform 0.2s;
}
.nowaste-submission-wrapper .step:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
}
.nowaste-submission-wrapper .step .step-num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--dark-blue));
  color: var(--black);
  font-weight: 800;
  font-family: 'Space Grotesk';
  display: grid;
  place-items: center;
  font-size: 18px;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(0, 200, 255, 0.25);
}
.nowaste-submission-wrapper .step.optional .step-num {
  background: linear-gradient(135deg, var(--accent-yellow), #ffb700);
}
.nowaste-submission-wrapper .step h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.nowaste-submission-wrapper .step .sub {
  font-size: 12px;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.nowaste-submission-wrapper .step ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.nowaste-submission-wrapper .step ul li {
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 14.5px;
}
.nowaste-submission-wrapper .step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.nowaste-submission-wrapper .note-box {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 221, 0, 0.08);
  border: 1px solid rgba(255, 221, 0, 0.3);
  color: var(--white);
  font-size: 14px;
}

/* CHECKLIST & CTA */
.nowaste-submission-wrapper .checklist {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.06), rgba(0, 119, 182, 0.04));
  border: 1px solid var(--border-soft);
}
.nowaste-submission-wrapper .checklist .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.nowaste-submission-wrapper .checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  transition: background 0.2s;
}
.nowaste-submission-wrapper .checklist label:hover {
  background: rgba(0, 200, 255, 0.06);
  color: var(--white);
}
.nowaste-submission-wrapper .checklist input {
  margin-top: 3px;
  accent-color: var(--cyan);
  flex-shrink: 0;
}
.nowaste-submission-wrapper .checklist input:checked + span {
  color: var(--white);
  text-decoration: line-through;
  text-decoration-color: var(--cyan);
}
.nowaste-submission-wrapper .cta-bar {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.1), rgba(255, 221, 0, 0.06));
  border: 1px solid rgba(255, 221, 0, 0.3);
  text-align: center;
}

.nowaste-submission-wrapper .cta-bar h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.nowaste-submission-wrapper .cta-bar p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.nowaste-submission-wrapper .cta-bar .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nowaste-submission-wrapper .layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nowaste-submission-wrapper .toc {
    position: static;
  }
  .nowaste-submission-wrapper .info-grid,
  .nowaste-submission-wrapper .file-row {
    grid-template-columns: 1fr;
  }
  .nowaste-submission-wrapper .checklist .grid {
    grid-template-columns: 1fr;
  }
  .nowaste-submission-wrapper .deadline-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .nowaste-submission-wrapper .step {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nowaste-submission-wrapper .deadline-banner .countdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
}
