/* TURCO MEDIA — turcomedia.org (EDGE-225)
   Palet: dashboard "Rafine Koyu" ile uyumlu — lime vurgu + koyu zemin,
   ikincil vurgu Turco Sound logosundaki pembe. */
:root {
  --bg: #0f0f12;
  --surface: #17171b;
  --surface-2: #1e1e24;
  --border: #2a2a32;
  --text: #f2f2ee;
  --muted: #9a9aa3;
  --accent: #cdf54a;
  --accent-ink: #10120a;
  --pink: #ff2da0;
  --radius: 16px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 15, 18, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 24px;
}
.brand { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.04em; white-space: nowrap; }
.brand .t1 { color: var(--accent); }
.brand .t2 { color: var(--pink); }
.nav-links { display: flex; gap: 18px; margin-left: auto; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--text); text-decoration: none; }

/* ── Hero ── */
.hero { padding: 72px 0 48px; text-align: center; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); line-height: 1.15; font-weight: 800; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p.sub { color: var(--muted); max-width: 640px; margin: 18px auto 0; font-size: 1.08rem; }
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-sm { padding: 7px 14px; font-size: 0.85rem; }

/* ── Stats band ── */
.stats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding: 26px 0 8px; }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 28px; text-align: center; min-width: 150px;
}
.stat .num { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.stat .lbl { color: var(--muted); font-size: 0.85rem; }

/* ── Section ── */
.section { padding: 56px 0; }
.section h2 { font-size: 1.6rem; margin-bottom: 8px; }
.section p.lead { color: var(--muted); margin-bottom: 28px; max-width: 640px; }

/* ── Cards grid ── */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: relative;
}
.card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card .tag {
  position: absolute; top: 16px; right: 16px; font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.tag-live { background: rgba(205, 245, 74, 0.12); color: var(--accent); }
.tag-soon { background: rgba(255, 45, 160, 0.12); color: var(--pink); }

/* ── Video embed ── */
.video-frame {
  position: relative; width: 100%; max-width: 760px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Forms ── */
.field {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); font-size: 1rem; outline: none;
}
.field:focus { border-color: var(--accent); }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.form-row .field { flex: 1; min-width: 220px; }
.hint { color: var(--muted); font-size: 0.8rem; margin-top: 8px; }

/* ── Banner (config yok / bilgi) ── */
.banner {
  background: rgba(255, 45, 160, 0.08); border: 1px solid rgba(255, 45, 160, 0.35);
  color: var(--text); border-radius: 12px; padding: 12px 16px; font-size: 0.92rem;
  margin: 18px 0;
}
.banner.ok { background: rgba(205, 245, 74, 0.07); border-color: rgba(205, 245, 74, 0.3); }

/* ── İstek listesi ── */
.req-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.req-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px;
}
.req-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.req-meta { flex: 1; min-width: 0; }
.req-meta .song { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.req-meta .artist { color: var(--muted); font-size: 0.88rem; }
.req-votes { text-align: center; min-width: 56px; }
.req-votes .n { font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.req-votes .l { font-size: 0.7rem; color: var(--muted); }
.badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.badge-open { background: rgba(205, 245, 74, 0.12); color: var(--accent); }
.badge-prod { background: rgba(255, 176, 32, 0.14); color: #ffb020; }
.badge-pub { background: rgba(64, 192, 255, 0.14); color: #40c0ff; }

/* ── Arama sonuçları ── */
.results { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 18px; }
.result-card {
  display: flex; gap: 12px; align-items: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px;
}
.result-card img { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; }
.result-card .meta { flex: 1; min-width: 0; }
.result-card .meta .song { font-weight: 600; font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.result-card .meta .artist { color: var(--muted); font-size: 0.83rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Fiyat kartları ── */
.pricing { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card h3 { font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.price-card .price { font-size: 2rem; font-weight: 800; margin: 10px 0 2px; }
.price-card .price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.price-card ul { list-style: none; margin: 18px 0 22px; flex: 1; }
.price-card li { padding: 6px 0; font-size: 0.92rem; color: var(--text); }
.price-card li::before { content: "◆ "; color: var(--accent); font-size: 0.7rem; }
.price-card li.neg { color: var(--muted); }
.price-card li.neg::before { content: "◇ "; color: var(--muted); }

/* ── Adımlar ── */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 12px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border); padding: 36px 0 48px; margin-top: 40px;
  color: var(--muted); font-size: 0.88rem;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.socials { display: flex; gap: 16px; }
.socials a { color: var(--muted); }
.socials a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 560px) {
  .hero { padding: 48px 0 32px; }
  .nav-inner { gap: 12px; }
  .nav-links { gap: 12px; }
}
