/* ─── YUKLE (UPLOAD) PAGE ───────────────────────────────── */

.yukle-wrap {
  padding: 24px 16px 0;
}

.yukle-header {
  margin-bottom: 20px;
}
.yukle-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  color: var(--t1);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.yukle-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* ─── DROP ZONE ──────────────────────────────────────────── */
.drop-zone {
  border: 1.5px dashed var(--amber);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  background: var(--amber-dim);
  transition: background .2s, border-color .2s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.drop-zone:hover, .drop-zone.dragging { background: rgba(232,160,32,.18); }
.drop-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.drop-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232,160,32,.15);
  border: 1px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
}
.drop-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--amber); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.drop-text {
  text-align: center;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.55;
}
.drop-text strong { color: var(--amber-txt); font-weight: 500; display: block; font-size: 14px; margin-bottom: 2px; }
.drop-meta {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.drop-meta-tag {
  font-size: 10px; color: var(--t3);
  background: var(--bg3);
  border: .5px solid var(--border);
  border-radius: 20px;
  padding: 3px 9px;
}

/* ─── PHOTO PREVIEW ──────────────────────────────────────── */
.preview-wrap {
  display: none;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
}
.preview-wrap.visible { display: block; }
.preview-wrap img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
}
.preview-change {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  border: .5px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.preview-change:hover { background: rgba(0,0,0,.75); }

/* ─── KURAL KUTUSU ───────────────────────────────────────── */
.rules-box {
  background: var(--bg2);
  border: .5px solid var(--border2);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  transition: background .25s;
}
.rules-box-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--amber-txt);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.rules-box-title svg { width: 12px; height: 12px; fill: none; stroke: var(--amber); stroke-width: 1.5; stroke-linecap: round; }
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  border-bottom: .5px solid var(--border);
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
}
.rule-item:last-child { border-bottom: none; padding-bottom: 0; }
.rule-check { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.rule-check svg { width: 8px; height: 8px; fill: none; stroke: var(--t3); stroke-width: 2; stroke-linecap: round; }

/* ─── PROGRESS BAR ───────────────────────────────────────── */
.upload-progress {
  display: none;
  margin-bottom: 16px;
}
.upload-progress.visible { display: block; }
.progress-bar-wrap {
  width: 100%;
  height: 4px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 4px;
  transition: width .3s ease;
}
.progress-label {
  font-size: 11px;
  color: var(--t3);
  margin-top: 6px;
  text-align: center;
}

/* ─── SUCCESS STATE ──────────────────────────────────────── */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
  gap: 14px;
}
.success-state.visible { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(80,180,100,.12);
  border: 1px solid rgba(80,180,100,.35);
  display: flex; align-items: center; justify-content: center;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}
.success-icon svg { width: 28px; height: 28px; fill: none; stroke: #50c060; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes popIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.success-title { font-family: Georgia, serif; font-size: 20px; color: var(--t1); }
.success-sub { font-size: 13px; color: var(--t2); line-height: 1.6; max-width: 280px; }
