*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #E02020;
  --bg:     #F7F7F8;
  --white:  #FFFFFF;
  --border: #E4E4E7;
  --text:   #0D0D0D;
  --text2:  #4B4B57;
  --text3:  #8A8A96;
  --font:   'Inter', system-ui, sans-serif;
}

html, body {
  height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── SCREENS ── */
.screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.screen-inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── TAKİP EKRANI ── */
.follow-screen-inner {
  max-width: 520px;
}

.follow-big-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(224,32,32,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: pulse-heart 2s ease-in-out infinite;
}
.follow-big-icon svg { width: 38px; height: 38px; stroke: var(--red); fill: rgba(224,32,32,0.15); }

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224,32,32,0.2); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(224,32,32,0); }
}

.follow-big-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}

.follow-big-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.follow-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #0D0D0D;
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-bottom: 16px;
}
.follow-big-btn:hover { background: #333; transform: translateY(-2px); }
.follow-big-btn svg { width: 18px; height: 18px; stroke: #fff; }

.follow-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-bottom: 16px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.follow-continue-btn:hover { background: #b01a1a; transform: translateY(-2px); }

.follow-skip {
  font-size: 13px;
  color: var(--text3);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.follow-skip:hover { color: var(--text2); }

/* ── START ── */
.back-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
}
.back-link:hover { color: var(--text); }

.start-logo {
  height: 88px;
  margin-bottom: 28px;
}

.start-title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.start-sub {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.start-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.cat-pill {
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-pill svg { width: 13px; height: 13px; }
.cat-pill:hover, .cat-pill.selected {
  background: rgba(224,32,32,0.08);
  border-color: rgba(224,32,32,0.3);
  color: var(--red);
}

/* ── KATEGORİ BİLGİ KARTLARI ── */
.start-cat-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  width: 100%;
}

.cat-info-card {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  pointer-events: none;
}
.cat-info-icon {
  display: flex;
  align-items: center;
}
.cat-info-icon svg { width: 13px; height: 13px; stroke: var(--red); }
.cat-info-name { font-weight: 600; color: var(--text2); }
.cat-info-count {
  font-weight: 700;
  color: var(--text3);
  font-size: 12px;
  background: var(--bg);
  border-radius: 100px;
  padding: 1px 8px;
}

/* ── TAKİP RICA KARTI ── */
.follow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff8f0;
  border: 1.5px solid #fed7aa;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 560px;
}

.follow-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249,115,22,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.follow-icon svg { width: 18px; height: 18px; stroke: #f97316; }

.follow-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.follow-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.follow-text span {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.4;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #0D0D0D;
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.follow-btn:hover { background: #333; }
.follow-btn svg { width: 14px; height: 14px; stroke: #fff; }

.start-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.option-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px 28px;
  cursor: pointer;
  transition: all .2s;
  min-width: 140px;
}
.option-card:hover, .option-card.selected {
  border-color: var(--red);
  background: #fff5f5;
}
.option-icon  { font-size: 28px; margin-bottom: 8px; }
.option-label { font-size: 15px; font-weight: 700; }
.option-desc  { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ── NASIL OYNANIR KARTI ── */
.htp-card {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 24px;
  text-align: left;
}

.htp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.htp-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(224,32,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.htp-header-icon svg { width: 14px; height: 14px; stroke: var(--red); }
.htp-header-text {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text2);
}

.htp-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.htp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.htp-item p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
  padding-top: 2px;
}
.htp-item p strong { color: var(--text); font-weight: 700; }

.htp-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.htp-icon svg { width: 14px; height: 14px; }

.htp-icon-green  { background: #f0fdf4; }
.htp-icon-green svg  { stroke: #16a34a; }
.htp-icon-red    { background: rgba(224,32,32,0.08); }
.htp-icon-red svg    { stroke: var(--red); }
.htp-icon-orange { background: #fff7ed; }
.htp-icon-orange svg { stroke: #ea580c; }
.htp-icon-amber  { background: #fefce8; }
.htp-icon-amber svg  { stroke: #ca8a04; }

.btn-start {
  padding: 16px 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font);
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(224,32,32,0.3);
  margin-bottom: 14px;
}
.btn-start:hover { background: #b01a1a; transform: translateY(-2px); }

.start-note { font-size: 13px; color: var(--text3); }

/* ── TEST HEADER ── */
#screenTest {
  align-items: flex-start;
  padding: 0;
  flex-direction: column;
}

.test-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.back-link-sm {
  font-size: 18px;
  color: var(--text3);
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
  transition: color .2s;
}
.back-link-sm:hover { color: var(--red); }

.test-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.test-progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  transition: width .4s ease;
  width: 0%;
}

.test-progress-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  white-space: nowrap;
}

/* ── TEST BODY ── */
.test-body {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  flex: 1;
}

.q-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

/* ── TIMER + SCORE ROW ── */
.timer-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.test-score-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #fecaca;
  border-radius: 16px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 2px 12px rgba(224,32,32,0.08);
}
.test-score-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(224,32,32,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-score-icon svg { width: 18px; height: 18px; stroke: var(--red); }
.test-score-label { font-size: 11px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.test-score-num   { font-size: 32px; font-weight: 900; color: var(--red); letter-spacing: -1.5px; line-height: 1; }

.q-cat-tag {
  padding: 5px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

.q-num-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text3);
}

/* ── TIMER ── */
.timer-ring-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
}

.timer-ring {
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}

.ring-bg   { fill: none; stroke: var(--border); stroke-width: 3; }
.ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear, stroke .5s;
}

.timer-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

/* ── QUESTION ── */
.question-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--text);
}

/* ── ANSWERS ── */
.answers-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.answer-btn:hover:not(:disabled) {
  border-color: #d4d4d8;
  background: #fafafa;
  transform: translateX(4px);
}

.answer-btn .ans-letter {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all .2s;
}

.answer-btn.correct {
  border-color: #86efac !important;
  background: #f0fdf4 !important;
  color: #16a34a !important;
}
.answer-btn.correct .ans-letter {
  background: #16a34a;
  color: #fff;
}

.answer-btn.wrong {
  border-color: #fca5a5 !important;
  background: #fff5f5 !important;
  color: var(--red) !important;
}
.answer-btn.wrong .ans-letter {
  background: var(--red);
  color: #fff;
}

.answer-btn.dimmed {
  opacity: 0.4;
}

/* ── FEEDBACK ── */
.answer-feedback {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.feedback-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.feedback-icon svg { width: 40px; height: 40px; }

.fb-correct { }
.fb-correct svg { stroke: #16a34a; }

.fb-wrong { }
.fb-wrong svg { stroke: var(--red); }

.fb-timeout { }
.fb-timeout svg { stroke: #f97316; }
.feedback-text { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feedback-source { font-size: 13px; color: var(--text3); margin-bottom: 20px; }

/* ── JOKER ── */
.joker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.joker-row-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text3);
}

.joker-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  background: #fefce8;
  border: 2px solid #fde047;
  border-radius: 100px;
  font-family: var(--font);
  cursor: pointer;
  transition: all .2s;
}
.joker-btn:hover:not(:disabled) {
  background: #fef9c3;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.25);
}
.joker-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fef3c7;
  border: 1.5px solid #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.joker-btn-icon svg { width: 13px; height: 13px; stroke: #d97706; }
.joker-btn-text {
  font-size: 13px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: 0.5px;
}
.joker-btn.used {
  opacity: 0.38;
  cursor: not-allowed;
  background: var(--bg);
  border-color: var(--border);
}
.joker-btn.used .joker-btn-icon {
  background: var(--bg);
  border-color: var(--border);
}
.joker-btn.used .joker-btn-icon svg { stroke: var(--text3); }
.joker-btn.used .joker-btn-text { color: var(--text3); }

/* Muhaliflere Sor — farklı renk şeması */
.joker-btn-audience {
  background: #eff6ff;
  border-color: #93c5fd;
}
.joker-btn-audience:hover:not(:disabled) {
  background: #dbeafe;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59,130,246,0.22);
}
.joker-btn-audience .joker-btn-icon {
  background: #dbeafe;
  border-color: #93c5fd;
}
.joker-btn-audience .joker-btn-icon svg { stroke: #2563eb; }
.joker-btn-audience .joker-btn-text { color: #1e3a8a; }
.joker-btn-audience.used {
  background: var(--bg);
  border-color: var(--border);
}

/* Telefon — farklı renk şeması */
.joker-btn-phone {
  background: #f0fdf4;
  border-color: #86efac;
}
.joker-btn-phone:hover:not(:disabled) {
  background: #dcfce7;
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34,197,94,0.22);
}
.joker-btn-phone .joker-btn-icon {
  background: #dcfce7;
  border-color: #86efac;
}
.joker-btn-phone .joker-btn-icon svg { stroke: #16a34a; }
.joker-btn-phone .joker-btn-text { color: #14532d; }
.joker-btn-phone.used {
  background: var(--bg);
  border-color: var(--border);
}
.joker-row { flex-wrap: wrap; }

/* ── TELEFON JOKERİ MODAL ── */
.phone-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.phone-modal.visible { opacity: 1; }

.phone-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.phone-modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 28px 28px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  transform: translateY(28px) scale(0.97);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.phone-modal.visible .phone-modal-card { transform: translateY(0) scale(1); }

/* Header */
.phone-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.phone-modal-hicon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-modal-hicon svg { width: 22px; height: 22px; stroke: #16a34a; }
.phone-modal-htitle { font-size: 16px; font-weight: 800; color: var(--text); }
.phone-modal-hsub   { font-size: 13px; color: var(--text3); margin-top: 2px; }

/* Kişiler */
.phone-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.phone-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  font-family: var(--font);
  transition: all .18s;
  text-align: left;
}
.phone-contact:hover {
  border-color: #a3e635;
  background: #f7fee7;
  transform: translateX(3px);
}

.contact-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  overflow: hidden;
}
.contact-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.contact-info { flex: 1; }
.contact-name  { font-size: 14px; font-weight: 700; color: var(--text); }
.contact-title { font-size: 12px; color: var(--text3); margin-top: 2px; }
.contact-arrow svg { width: 16px; height: 16px; stroke: var(--text3); }

.phone-cancel-btn {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}
.phone-cancel-btn:hover { border-color: var(--red); color: var(--red); }

/* Erişilemiyor */
.phone-unavailable {
  text-align: center;
  padding: 8px 4px;
}
.phone-unavail-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff1f2;
  border: 2px solid #fecdd3;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.phone-unavail-icon svg { width: 32px; height: 32px; stroke: #dc2626; }
.phone-unavail-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.phone-unavail-msg {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: left;
}
.phone-unavail-msg strong { color: #dc2626; }
.phone-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}
.phone-back-btn:hover { border-color: var(--red); color: var(--red); }

/* Çalıyor */
.phone-ringing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 8px;
  text-align: center;
}
.phone-ring-pulse {
  position: relative;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.phone-ring-pulse::before,
.phone-ring-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  animation: ringPulse 1.6s ease-out infinite;
}
.phone-ring-pulse::after { animation-delay: 0.6s; }
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.phone-ring-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  position: relative; z-index: 1;
  flex-shrink: 0;
  overflow: hidden;
}
.phone-ring-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.phone-ringing-name   { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.phone-ringing-status { font-size: 14px; color: var(--text3); margin-bottom: 24px; min-height: 20px; }
.phone-ringing-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #16a34a;
  display: flex; align-items: center; justify-content: center;
  animation: phoneRing .8s ease-in-out infinite;
}
.phone-ringing-icon svg { width: 24px; height: 24px; stroke: #fff; }
@keyframes phoneRing {
  0%,100%  { transform: rotate(0deg); }
  15%, 45% { transform: rotate(-18deg); }
  30%, 60% { transform: rotate(18deg); }
  75%      { transform: rotate(0deg); }
}

/* Bağlandı */
.phone-connected-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.phone-connected-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.phone-connected-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.phone-connected-name  { font-size: 16px; font-weight: 800; color: var(--text); }
.phone-connected-title { font-size: 12px; color: var(--text3); margin: 2px 0 4px; }
.phone-connected-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: #16a34a;
}
.phone-connected-status svg { width: 13px; height: 13px; stroke: #16a34a; }

.phone-speech-wrap {
  margin-bottom: 16px;
}
.phone-speech-bubble {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 0 18px 18px 18px;
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  position: relative;
}
.phone-speech-bubble::before {
  content: '';
  position: absolute;
  top: -1px; left: -12px;
  border: 6px solid transparent;
  border-right-color: #86efac;
  border-top-color: #86efac;
}
.phone-speech-bubble strong { color: var(--red); font-weight: 800; }
.phone-speech-bubble em { font-style: italic; color: var(--text2); }

.phone-duration {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.phone-hangup-btn {
  width: 100%;
  padding: 13px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.phone-hangup-btn svg { width: 16px; height: 16px; stroke: #fff; }
.phone-hangup-btn:hover { background: #b91c1c; }

@media (max-width: 480px) {
  .phone-modal-card { padding: 22px 18px 20px; }
}

/* ── MUHALİFLERE SOR MODAL ── */
.audience-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.audience-modal.visible { opacity: 1; }

.audience-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.audience-modal-card {
  position: relative;
  z-index: 1;
  background: #0f172a;
  border-radius: 28px;
  padding: 32px 32px 30px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(28px) scale(0.97);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.audience-modal.visible .audience-modal-card {
  transform: translateY(0) scale(1);
}

.audience-modal-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.audience-modal-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(59,130,246,0.18);
  border: 1.5px solid rgba(59,130,246,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audience-modal-icon-wrap svg { width: 24px; height: 24px; stroke: #60a5fa; }

.audience-modal-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #60a5fa;
  margin-bottom: 3px;
}
.audience-modal-sub {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

/* Çubuklar */
.audience-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.audience-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-letter {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #cbd5e1;
  flex-shrink: 0;
}

.audience-bar-track {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
}

.audience-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e02020, #ef4444);
  border-radius: 8px;
  animation: audienceBarGrow 0.75s cubic-bezier(.34, 1.1, .64, 1) forwards;
}

@keyframes audienceBarGrow {
  from { width: 0%; }
  to   { width: var(--w); }
}

.audience-pct {
  font-size: 14px;
  font-weight: 800;
  color: #f1f5f9;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.audience-modal-btn {
  width: 100%;
  padding: 14px 32px;
  background: #e02020;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
}
.audience-modal-btn.visible { opacity: 1; transform: translateY(0); }
.audience-modal-btn:hover { background: #b01a1a; }

@media (max-width: 480px) {
  .audience-modal-card { padding: 24px 20px 22px; }
}

.answer-btn.eliminated {
  opacity: 0.18;
  pointer-events: none;
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.4);
  transition: opacity .4s ease;
}

/* ── BİLGİLENDİRME NOTU MODAL ── */
.note-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.note-modal.visible {
  opacity: 1;
}
.note-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.note-modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(28px) scale(0.97);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.note-modal.visible .note-modal-card {
  transform: translateY(0) scale(1);
}
.note-modal-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fefce8;
  border: 2px solid #fde047;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.note-modal-icon-wrap svg { width: 32px; height: 32px; stroke: #ca8a04; }
.note-modal-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ca8a04;
  margin-bottom: 18px;
}
.note-modal-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 36px;
  min-height: 4em;
  text-align: left;
}
.note-modal-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--text);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink .65s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.note-modal-btn {
  width: 100%;
  padding: 16px 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, background .2s;
}
.note-modal-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.note-modal-btn:hover { background: #b01a1a; }

@media (max-width: 480px) {
  .note-modal-card { padding: 32px 24px 28px; }
  .note-modal-text { font-size: 15px; }
}

.btn-next {
  padding: 13px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
}
.btn-next:hover { background: #b01a1a; }

/* ── RESULT ── */
.result-badge {
  font-size: 72px;
  margin-bottom: 16px;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(224,32,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.result-badge svg { width: 48px; height: 48px; stroke: var(--red); }

.result-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.result-unvan {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
}

.result-score-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.result-score-num {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--text);
}

.result-score-label {
  font-size: 20px;
  color: var(--text3);
  font-weight: 600;
}

.result-detail {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.7;
}

.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-share:hover { opacity: 0.8; }

/* Paylaşım görseli oluştur butonu */
.btn-share-gen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-share-gen:hover { opacity: 0.85; }
.btn-share-gen:disabled { opacity: 0.5; cursor: default; }
.btn-share-gen svg { width: 16px; height: 16px; }

/* Paylaşım önizleme alanı */
.share-preview-wrap {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.share-preview-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.share-canvas {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}
.share-preview-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-download:hover { background: rgba(255,255,255,0.14); }
.btn-download svg { width: 15px; height: 15px; }
.share-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  text-align: center;
}

.btn-home {
  padding: 14px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.btn-home:hover { background: var(--border); }

/* ── NO QUESTIONS ── */
.no-q-msg {
  font-size: 15px;
  color: var(--text2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .question-text { font-size: 18px; }
  .answer-btn { font-size: 14px; padding: 14px 16px; }
  .test-body { padding: 28px 16px 48px; }
}
