/* ============================================================
   KEYZIP.PRO — Page Sections: Hero, Profile, Upload, Resource Detail
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 0;
}

/* Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: orb-drift 10s ease-in-out infinite;
}
.orb-1 { width: 700px; height: 700px; top: -200px; left: -150px; background: radial-gradient(circle, rgba(59,130,246,.14) 0%, transparent 70%); animation-delay: 0s; }
.orb-2 { width: 600px; height: 600px; top: 0; right: -120px; background: radial-gradient(circle, rgba(139,92,246,.18) 0%, transparent 70%); animation-delay: -3.5s; }
.orb-3 { width: 500px; height: 500px; bottom: 50px; left: 25%; background: radial-gradient(circle, rgba(236,72,153,.10) 0%, transparent 70%); animation-delay: -7s; }
.orb-4 { width: 300px; height: 300px; bottom: 100px; right: 20%; background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%); animation-delay: -2s; }
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  30% { transform: translate(40px,-50px) scale(1.05); }
  60% { transform: translate(-25px,30px) scale(0.95); }
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

/* Particle canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

/* Spotlight */
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%),
    rgba(139,92,246,.07) 0%, transparent 55%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.22);
  border-radius: var(--r-full);
  padding: 6px 18px 6px 10px;
  font-size: 13px; font-weight: 600; color: #a78bfa;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  animation: badge-in 0.7s var(--ease-out) both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--violet);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(139,92,246,.5); }
  50% { opacity:.6; box-shadow: 0 0 0 5px rgba(139,92,246,0); }
}
@keyframes badge-in {
  from { opacity:0; transform: translateY(-10px) scale(0.96); }
  to   { opacity:1; transform: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -3.5px;
  margin-bottom: 24px;
  animation: title-in 0.9s var(--ease-out) 0.15s both;
}
.hero-title .line-white { display: block; color: var(--text-1); }
.hero-title .line-grad {
  display: block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 45%, var(--pink) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-in 0.9s var(--ease-out) 0.15s both,
             grad-shift 6s ease-in-out infinite alternate 1.1s;
}
@keyframes grad-shift {
  0%   { background-position: 0%; }
  100% { background-position: 100%; }
}
@keyframes title-in {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: none; }
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--text-3);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: title-in 0.8s var(--ease-out) 0.3s both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: title-in 0.8s var(--ease-out) 0.45s both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 64px;
  animation: title-in 0.8s var(--ease-out) 0.6s both;
}
.h-stat {}
.h-stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--text-1);
  line-height: 1;
}
.h-stat-label { font-size: 12px; color: var(--text-3); font-weight: 500; margin-top: 3px; }
.h-stat-sep { width: 1px; height: 40px; background: var(--border); }

/* Feed preview peek below hero */
.hero-peek {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--bg-card);
  padding: 20px 20px 0;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  height: 300px;
  animation: peek-in 1s var(--ease-out) 0.7s both;
}
@keyframes peek-in {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: none; }
}

/* ── SEARCH RESULTS PAGE ─────────────────────────────────── */
.search-hero {
  padding: calc(var(--nav-h) + 48px) 24px 40px;
  background: linear-gradient(to bottom, rgba(139,92,246,.04), transparent);
  border-bottom: 1px solid var(--border);
}
.search-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
}
.search-hero p { font-size: 15px; color: var(--text-3); }
.search-main-input {
  display: flex; gap: 10px;
  max-width: 640px;
  margin-top: 24px;
}
.search-main-input input {
  flex: 1;
  padding: 13px 20px;
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  font-size: 15px; color: var(--text-1);
  transition: border-color 0.2s;
}
.search-main-input input:focus { border-color: var(--violet); }

/* ── RESOURCE DETAIL PAGE ────────────────────────────────── */
.resource-detail {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 32px) 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.resource-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 24px;
}
.resource-preview-visual {
  padding: 0;
}
.resource-preview .card-placeholder {
  min-height: 400px;
}
.resource-info { }
.resource-title-h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.resource-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.resource-desc {
  font-size: 15px; color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.resource-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
}
.resource-tag {
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600;
  background: var(--bg-active);
  color: var(--text-3);
  border: 1px solid var(--border);
  cursor: none; transition: all 0.2s;
}
.resource-tag:hover { color: var(--text-1); border-color: var(--border-md); }

/* Sidebar */
.resource-sidebar { }
.sidebar-download-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-bottom: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.dl-box-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.dl-box-meta { font-size: 13px; color: var(--text-3); margin-bottom: 20px; line-height: 1.6; }
.dl-box-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 20px;
}
.dl-stat {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
}
.dl-stat-num { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-1); }
.dl-stat-label { font-size: 11px; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.dl-access-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--green-dim);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  font-size: 13px; font-weight: 600; color: #34d399;
}

/* ── COMMENTS ────────────────────────────────────────────── */
.comments-section { margin-top: 40px; }
.comments-section h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  margin-bottom: 20px;
}
.comment-input-row {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.comment-av {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.comment-input-wrap { flex: 1; }
.comment-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 14px; color: var(--text-1);
  resize: none; min-height: 44px;
  transition: border-color 0.2s, min-height 0.2s;
}
.comment-input:focus { border-color: var(--violet); min-height: 80px; }
.comment-item {
  display: flex; gap: 12px;
  margin-bottom: 20px;
}
.comment-content { flex: 1; }
.comment-author { font-size: 13px; font-weight: 700; color: var(--text-1); }
.comment-time { font-size: 11px; color: var(--text-4); margin-left: 8px; }
.comment-text { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-top: 4px; }
.comment-actions { display: flex; gap: 12px; margin-top: 6px; }
.comment-act { font-size: 12px; color: var(--text-4); font-weight: 600; cursor: none; transition: color 0.2s; }
.comment-act:hover { color: var(--text-2); }

/* ── USER PROFILE PAGE ───────────────────────────────────── */
.profile-banner {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-overlay), rgba(139,92,246,.15), rgba(59,130,246,.1));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.profile-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; align-items: flex-end;
  padding-bottom: 0;
}
.profile-header {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: flex-start; gap: 24px;
  position: relative;
}
.profile-avatar-wrap {
  width: 100px; height: 100px;
  border-radius: var(--r-full);
  border: 4px solid var(--bg-base);
  overflow: hidden;
  margin-top: -50px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.profile-avatar-wrap img, .profile-avatar-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-avatar-fallback {
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900; color: #fff;
}
.profile-info { flex: 1; padding-top: 12px; }
.profile-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 900;
  display: flex; align-items: center; gap: 8px;
}
.profile-handle { font-size: 14px; color: var(--text-3); margin-top: 4px; }
.profile-bio { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-top: 10px; max-width: 480px; }
.profile-actions { display: flex; gap: 8px; margin-top: 16px; }
.profile-stats-row {
  display: flex; gap: 28px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.p-stat { text-align: left; }
.p-stat-num { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-1); }
.p-stat-label { font-size: 12px; color: var(--text-3); font-weight: 500; }
.profile-tabs {
  display: flex; gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-top: 32px;
}
.profile-tab {
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--text-3);
  position: relative; cursor: none;
  transition: color 0.2s;
}
.profile-tab.active { color: var(--text-1); }
.profile-tab.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--violet); border-radius: 2px 2px 0 0;
}
.profile-level-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(249,115,22,.15));
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 12px; font-weight: 700;
  color: #fbbf24;
}

/* ── UPLOAD PAGE ─────────────────────────────────────────── */
.upload-page {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}
.upload-container {
  max-width: 760px;
  margin: 0 auto;
}
.upload-page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 8px;
}
.upload-page-sub { font-size: 16px; color: var(--text-3); margin-bottom: 40px; }

/* Drop zone */
.drop-zone {
  background: var(--bg-card);
  border: 2px dashed var(--border-md);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  text-align: center;
  cursor: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  margin-bottom: 32px;
  position: relative;
}
.drop-zone.drag-over {
  border-color: var(--violet);
  background: rgba(139,92,246,.06);
  transform: scale(1.01);
}
.drop-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: none;
}
.drop-icon {
  font-size: 56px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(139,92,246,.3));
}
.drop-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  margin-bottom: 8px;
}
.drop-sub { font-size: 14px; color: var(--text-3); margin-bottom: 16px; }
.drop-formats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
}
.fmt-chip {
  padding: 3px 9px;
  border-radius: 5px;
  background: var(--bg-active);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--text-3);
}
/* Form sections */
.upload-form { display: flex; flex-direction: column; gap: 24px; }
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.form-section h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-field label span { color: var(--text-4); font-weight: 400; }

/* Access control radio */
.access-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.access-opt {
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 14px;
  cursor: none;
  transition: all 0.2s;
}
.access-opt:hover { border-color: var(--violet); }
.access-opt.selected { border-color: var(--violet); background: var(--violet-dim); }
.access-opt input[type="radio"] { display: none; }
.access-opt-icon { font-size: 20px; margin-bottom: 6px; }
.access-opt-title { font-size: 13px; font-weight: 700; color: var(--text-1); }
.access-opt-desc { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* Progress */
.upload-progress {
  background: var(--bg-card);
  border: 1px solid var(--violet);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: none;
}
.upload-progress.show { display: block; }
.progress-bar-wrap {
  background: var(--bg-input);
  border-radius: var(--r-full);
  height: 6px; overflow: hidden;
  margin: 12px 0 6px;
}
.progress-bar {
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-full);
  transition: width 0.3s var(--ease-out);
  box-shadow: 0 0 12px var(--violet-glow);
}

/* ── GAMIFICATION BAR ────────────────────────────────────── */
.gami-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,.04), transparent);
}
.gami-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Leaderboard */
.leaderboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.lb-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.lb-header h3 { font-family: var(--font-display); font-size: 16px; font-weight: 800; }
.lb-period {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  color: var(--text-4);
  background: var(--bg-active);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.lb-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s; cursor: none;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: var(--bg-hover); }
.lb-rank {
  width: 24px; text-align: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--text-4);
  flex-shrink: 0;
}
.lb-rank.g { color: #F59E0B; }
.lb-rank.s { color: #94A3B8; }
.lb-rank.b { color: #CD7F32; }
.lb-av {
  width: 32px; height: 32px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.lb-info { flex: 1; min-width: 0; }
.lb-name { font-size: 14px; font-weight: 700; color: var(--text-1); }
.lb-sub  { font-size: 11px; color: var(--text-3); }
.lb-xp { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--violet); flex-shrink: 0; }
.lb-delta { font-size: 11px; font-weight: 700; color: var(--green); flex-shrink: 0; }

/* Badges grid */
.badges-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
}
.badges-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 800; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.badges-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.badge-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  cursor: none; transition: all 0.2s;
}
.badge-row:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.badge-ico { font-size: 26px; flex-shrink: 0; }
.badge-info-name { font-size: 12px; font-weight: 700; color: var(--text-1); }
.badge-info-desc { font-size: 10px; color: var(--text-3); margin-top: 1px; }

/* XP Level bar */
.xp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  margin-top: 24px;
}
.xp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.xp-level { font-family: var(--font-display); font-size: 28px; font-weight: 900; background: var(--grad-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.xp-title { font-size: 13px; color: var(--text-3); }
.xp-bar-wrap { height: 8px; background: var(--bg-input); border-radius: var(--r-full); overflow: hidden; margin-bottom: 8px; }
.xp-bar { height: 100%; background: var(--grad-brand); border-radius: var(--r-full); box-shadow: 0 0 14px var(--violet-glow); }
.xp-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-4); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.nl-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(59,130,246,.04), rgba(139,92,246,.06));
}
.nl-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.nl-inner h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; margin-bottom: 12px; }
.nl-inner p { font-size: 15px; color: var(--text-3); line-height: 1.65; margin-bottom: 28px; }
.nl-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 12px 18px; background: var(--bg-input); border: 1px solid var(--border-md); border-radius: var(--r-full); font-size: 14px; color: var(--text-1); }
.nl-form input::placeholder { color: var(--text-4); }
.nl-form input:focus { border-color: var(--violet); outline: none; }
.nl-trust { font-size: 12px; color: var(--text-4); margin-top: 12px; }

/* ── RESPONSIVE PAGES ────────────────────────────────────── */
@media (max-width: 900px) {
  .resource-detail { grid-template-columns: 1fr; }
  .sidebar-download-box { position: static; }
  .gami-inner { grid-template-columns: 1fr; }
  .access-options { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-title { letter-spacing: -2px; }
  .hero-stats { gap: 16px; }
  .h-stat-sep { display: none; }
  .profile-header { flex-direction: column; }
  .nl-form { flex-direction: column; }
  .drop-zone { padding: 40px 20px; }
}
