/* ═══════════════════════════════════════════════
   antiSTRAVA — page-duvar.css
   Feed · Cards · Reactions · Champion Banner
   ═══════════════════════════════════════════════ */

/* ── FEED ── */
.feed-header {
  padding: 14px 16px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.feed-count {
  font-size: calc(10px * var(--fs-scale));
  color: var(--text-3); letter-spacing: 1px;
}
.feed { padding: 10px 12px 90px; display: flex; flex-direction: column; gap: 15px; }

/* ── FEED CARD ── */
.feed-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.2s;
  animation: fadeUp 0.35s ease both;
}
.feed-card:hover { border-color: var(--border-2); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* visual */
.fc-visual {
  position: relative;
  aspect-ratio: 4/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.fc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feed-card:hover .fc-img { transform: scale(1.02); }
.fc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.82) 100%);
}
.fc-brand {
  position: absolute; top: 10px; left: 12px; right: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.fc-brand-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
}
.fc-brand-text span { color: #FF4D00; }
.fc-vitrin-pill {
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(0,255,135,0.15); color: #00FF87;
  border: 1px solid rgba(0,255,135,0.3);
  padding: 3px 8px; border-radius: 100px;
}
.fc-quote-wrap { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 12px 10px; }
.fc-quote-line { width: 22px; height: 2px; background: #FF4D00; margin-bottom: 6px; }
.fc-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: calc(clamp(18px, 4.3vw, 22px) * var(--fs-scale));
  line-height: 1.2;
  color: #F2EDE4;
  text-shadow: 0 1px 5px rgba(0,0,0,0.65);
}

/* iPhone 12 ve benzeri küçük ekranlar */
@media (max-width: 430px) {
  .fc-quote {
    font-size: calc(clamp(22px, 6.45vw, 33px) * var(--fs-scale));
  }
}

/* meta row */
.fc-meta {
  padding: 9px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.fc-user { display: flex; align-items: center; gap: 8px; }
.fc-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-4); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--text-2); flex-shrink: 0;
  overflow: hidden;
}
.fc-username { font-size: calc(11px * var(--fs-scale)); color: var(--text); }
.fc-time {
  font-size: calc(9px * var(--fs-scale));
  color: var(--text-3); letter-spacing: 0.5px; margin-top: 1px;
}
.fc-vis-badge {
  font-size: calc(9px * var(--fs-scale));
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
  white-space: nowrap;
}
.fc-vis-badge.vitrine { background: rgba(0,255,135,0.1); color: var(--green); border: 1px solid rgba(0,255,135,0.2); }
.fc-vis-badge.sessiz  { background: var(--bg-4); color: var(--text-3); border: 1px solid var(--border); }

/* reactions */
.fc-reactions {
  padding: 9px 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.rxn-btns { display: flex; gap: 5px; flex-wrap: wrap; }
.rxn-btn {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg-4); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 6px 10px;
  cursor: pointer; transition: all 0.2s;
  font-size: 13px; user-select: none;
}
.rxn-btn:active { transform: scale(0.9); }
.rxn-count {
  font-size: calc(10px * var(--fs-scale));
  color: var(--text-3); font-family: 'IBM Plex Mono', monospace;
  transition: all 0.15s; min-width: 14px;
}
.rxn-btn.reacted.fire   { border-color: #FF4D00; background: rgba(255,77,0,0.12);  }
.rxn-btn.reacted.skull  { border-color: #a855f7; background: rgba(168,85,247,0.12);}
.rxn-btn.reacted.salute { border-color: #3b82f6; background: rgba(59,130,246,0.12);}
.rxn-btn.reacted.laugh  { border-color: #FFD200; background: rgba(255,210,0,0.12); }
.rxn-btn.reacted .rxn-count { color: var(--text); }
@keyframes rxnPop { 0%{transform:scale(1)} 40%{transform:scale(1.35)} 100%{transform:scale(1)} }
.rxn-btn.pop { animation: rxnPop 0.22s ease; }

/* ── CHAMPION BANNER ── */
.champion-banner {
  margin: 12px 12px 0;
  background: linear-gradient(135deg, rgba(255,77,0,0.1) 0%, rgba(255,210,0,0.05) 100%);
  border: 1px solid rgba(255,77,0,0.25);
  border-radius: 4px; padding: 14px; position: relative; overflow: hidden;
}
[data-theme="light"] .champion-banner {
  background: linear-gradient(135deg, rgba(232,68,0,0.07) 0%, rgba(212,168,0,0.04) 100%);
}
.champion-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,77,0,0.12), transparent 70%);
  pointer-events: none;
}
.champ-eyebrow {
  font-size: calc(9px * var(--fs-scale));
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.champ-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: calc(22px * var(--fs-scale));
  text-transform: uppercase; line-height: 1.1; margin-bottom: 10px;
}
.champ-title em { font-style: normal; color: var(--orange); }
.champ-quote {
  font-size: calc(12px * var(--fs-scale));
  color: var(--text-2); line-height: 1.7; font-style: italic;
  border-left: 2px solid var(--orange); padding-left: 12px; margin-bottom: 12px;
}
.champ-stats { display: flex; gap: 18px; }
.champ-stat { font-size: calc(9px * var(--fs-scale)); color: var(--text-3); }
.champ-stat strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: calc(18px * var(--fs-scale)); letter-spacing: 1px; color: var(--text);
}

/* ── NEW CARD CTA ── */
.feed-cta {
  margin: 10px 12px 0;
  background: var(--bg-3); border: 1px dashed var(--border-2);
  border-radius: 4px; padding: 14px;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  transition: border-color 0.2s;
}
.feed-cta:hover { border-color: var(--orange); }
.cta-icon {
  width: 38px; height: 38px; background: var(--orange); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; font-weight: bold; color: #000;
}
.cta-label { font-size: calc(12px * var(--fs-scale)); color: var(--text-2); line-height: 1.7; }
.cta-label strong { color: var(--text); display: block; }

/* ── SKELETON ── */
.sk-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; margin-bottom: 1px;
}
.sk-img {
  height: 180px;
  background: linear-gradient(90deg, var(--border) 25%, var(--border-2) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.sk-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.sk-line {
  height: 10px; border-radius: 2px;
  background: linear-gradient(90deg, var(--border) 25%, var(--border-2) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── VİTRİN MODAL ── */
.vitrin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
.vt-opt {
  background: var(--bg-3); padding: 16px 12px; cursor: pointer;
  transition: background 0.2s; text-align: center;
}
.vt-opt.active { background: var(--orange-glow); }
.vt-opt-icon { font-size: 24px; margin-bottom: 8px; }
.vt-opt-label {
  font-family: 'Bebas Neue', sans-serif; font-size: calc(15px * var(--fs-scale));
  letter-spacing: 2px; display: block; margin-bottom: 4px;
}
.vt-opt:first-child.active .vt-opt-label { color: var(--green); }
.vt-opt:last-child.active  .vt-opt-label { color: var(--text-2); }
.vt-opt:not(.active) .vt-opt-label { color: var(--text-3); }
.vt-opt-desc { font-size: calc(10px * var(--fs-scale)); color: var(--text-3); line-height: 1.6; }
.vt-opt.active .vt-opt-desc { color: var(--text-2); }
.vt-info {
  border-radius: 4px; padding: 12px; margin-bottom: 16px;
  font-size: calc(11px * var(--fs-scale)); color: var(--text-2); line-height: 1.7;
  transition: all 0.2s;
}
.vt-info.vitrine { background: rgba(0,255,135,0.06); border: 1px solid rgba(0,255,135,0.15); }
.vt-info.sessiz  { background: var(--bg-3); border: 1px solid var(--border); }
.vt-info-label {
  font-size: calc(9px * var(--fs-scale));
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.vt-info.vitrine .vt-info-label { color: var(--green); }
.vt-info.sessiz  .vt-info-label { color: var(--text-3); }

/* share url */
.share-url-row {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 14px; margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
}
.share-url-text {
  flex: 1; font-size: calc(10px * var(--fs-scale));
  color: var(--text-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.share-url-copy {
  background: var(--orange); color: #000; border: none;
  padding: 5px 11px; border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif; font-size: calc(11px * var(--fs-scale));
  letter-spacing: 1px; cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.share-url-copy:hover { background: var(--yellow); }
