:root {
  --bg-from: #c8eaff;
  --bg-mid: #9ed2f5;
  --bg-to: #6bb6ed;
  --fg: #1a2540;
  --fg-soft: #2c3957;
  --muted: #5a6a85;
  --muted-light: #8997b3;
  --accent: #2196f3;
  --accent-2: #0d6efd;
  --accent-soft: #5ea5f3;
  --gold: #f59e0b;
  --gold-2: #b45309;
  --gem: #8b5cf6;
  --gem-2: #6d28d9;
  --pink: #ec4899;
  --green: #22c55e;
  --danger: #ef4444;
  --danger-2: #dc2626;
  --card: rgba(255, 255, 255, 0.55);
  --card-strong: rgba(255, 255, 255, 0.85);
  --card-solid: #ffffff;
  --card-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 4px 12px rgba(13, 110, 253, 0.12);
  --shadow: 0 8px 32px rgba(13, 110, 253, 0.15);
  --shadow-lg: 0 16px 48px rgba(13, 110, 253, 0.2);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse at top, var(--bg-from) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, var(--bg-to) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-from) 0%, var(--bg-mid) 50%, var(--bg-to) 100%);
  background-attachment: fixed;
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

#app {
  max-width: 560px;
  margin: 0 auto;
  padding:
    max(14px, env(safe-area-inset-top)) 16px
    calc(env(safe-area-inset-bottom, 0px) + 110px);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ========== TOP BAR ========== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.mode-pill {
  background: var(--gem);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
  font-family: inherit;
}
.mode-pill .chev {
  font-size: 10px;
  opacity: 0.85;
}
.currency-row {
  display: flex;
  gap: 8px;
}
.currency-badge {
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 7px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.currency-badge.gold { color: var(--gold-2); }
.currency-badge.gem { color: var(--gem-2); }
.gold-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 30%, #fef3c7, #f59e0b 55%, #92400e);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5), inset 0 -2px 3px rgba(0,0,0,0.2);
  position: relative;
  flex-shrink: 0;
}
.gold-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 4px;
  height: 3px;
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
  filter: blur(0.5px);
}
.gem-icon {
  display: inline-block;
  width: 12px;
  height: 14px;
  background: linear-gradient(135deg, #c4b5fd, var(--gem) 50%, var(--gem-2));
  clip-path: polygon(50% 0, 100% 35%, 80% 100%, 20% 100%, 0 35%);
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
  flex-shrink: 0;
}

/* ========== BRAND HEADER ========== */
.brand {
  text-align: center;
  margin-bottom: 6px;
}
.brand h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(13, 110, 253, 0.35);
}
.brand .tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  margin: 2px 0 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ========== RIGHT SIDEBAR ========== */
.sidebar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 10px 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  z-index: 5;
}
.sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 6px;
  border-radius: 14px;
  cursor: pointer;
  min-width: 44px;
}
.sidebar-item:hover {
  background: rgba(33, 150, 243, 0.1);
}
.sidebar-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-2);
}
.sidebar-item .count {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  margin-top: 1px;
  line-height: 1;
}
@media (max-width: 360px) {
  .sidebar { right: 6px; }
}

/* ========== SCREENS ========== */
.screen {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 8px 0;
}
.screen.active { display: flex; }

/* ========== ORB ========== */
.orb-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}
.orb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  cursor: pointer;
  box-shadow:
    0 16px 48px rgba(13, 110, 253, 0.3),
    inset 0 6px 18px rgba(255, 255, 255, 0.8),
    inset 0 -6px 18px rgba(13, 110, 253, 0.08);
  transition: transform 0.15s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.orb:active { transform: scale(0.96); }
.orb svg.phone-icon {
  width: 58px;
  height: 58px;
  fill: var(--accent);
  filter: drop-shadow(0 2px 6px rgba(13, 110, 253, 0.3));
}
.orb.orb-searching {
  cursor: default;
  background: var(--card-strong);
}

/* concentric rings */
.orb-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb-rings span {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: ring-pulse 2.6s ease-out infinite;
}
.orb-rings span:nth-child(2) { animation-delay: 0.65s; }
.orb-rings span:nth-child(3) { animation-delay: 1.3s; }
@keyframes ring-pulse {
  0%   { transform: scale(0.85); opacity: 0; }
  15%  { opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
.pulsing .orb-rings span { animation-duration: 1.6s; }

/* ========== CALL ORB (with timer ring) ========== */
.call-orb-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-orb-wrap svg.progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 4px 16px rgba(13, 110, 253, 0.3));
}
.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 6;
}
.progress-ring-fg {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s linear;
}
.call-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 36px rgba(13, 110, 253, 0.25),
    inset 0 4px 16px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  gap: 4px;
}
.peer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-soft);
  letter-spacing: 0.02em;
}
.peer-heart {
  font-size: 10px;
  color: var(--pink);
  margin-top: -2px;
  font-weight: 600;
}
.timer {
  font-size: 64px;
  font-weight: 200;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  transition: transform 0.2s ease;
}
.timer.bump { transform: scale(1.18); }

/* ========== STATUS / TAGS ========== */
.status {
  font-size: 15px;
  color: var(--fg);
  margin: 0;
  font-weight: 500;
}
.tag {
  display: inline-block;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--fg);
  font-weight: 700;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
.hint {
  font-size: 13px;
  color: var(--fg-soft);
  max-width: 300px;
  line-height: 1.5;
  margin: 0;
}
.hint.small {
  font-size: 11px;
  margin-top: 6px;
  color: var(--muted);
}

/* ========== STATS GRID (idle) ========== */
.stats {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  justify-content: center;
}
.stats > div {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 12px 16px;
  flex: 1;
  text-align: center;
  backdrop-filter: blur(12px);
}
.stats span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}
.stats label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

/* ========== FILTER BUTTONS ========== */
.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 4px 0;
}
.filter-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-size: 22px;
  color: var(--accent-2);
  font-weight: 700;
  transition: transform 0.1s ease;
}
.filter-btn:active { transform: scale(0.94); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.4);
  transform: scale(1.05);
}
.filter-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.filter-btn.female { color: var(--pink); }
.filter-btn.male { color: var(--accent); }
.filter-btn.gold-tint { color: var(--gold); }
.filter-btn.active.female, .filter-btn.active.male, .filter-btn.active.gold-tint {
  color: white;
}

/* ========== VU meters ========== */
.vu-wrap {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}
.vu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vu label {
  width: 50px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  font-weight: 700;
}
.vu .bar {
  flex: 1;
  height: 6px;
  background: rgba(13, 110, 253, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.vu .bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.08s linear;
  border-radius: 3px;
}

/* ========== BUTTONS ========== */
button { font-family: inherit; }
.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(13, 110, 253, 0.42); }
.primary:active:not(:disabled) { transform: scale(0.98); }
.primary:disabled {
  background: rgba(255,255,255,0.5);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}
.danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-2));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}
.danger:active { transform: scale(0.98); }
.danger.icon-only {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.danger.icon-only svg { width: 26px; height: 26px; fill: white; }
.ghost {
  background: var(--card-strong);
  color: var(--fg);
  border: 1px solid var(--card-border);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.outline {
  background: var(--card-solid);
  color: var(--accent-2);
  border: 1.5px solid var(--accent);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12);
}
.outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.plus-icon {
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
}
.big {
  padding: 16px 26px;
  font-size: 22px;
  min-width: 84px;
}
.extend-cost {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.rate-buttons {
  display: flex;
  gap: 14px;
}
.rate-buttons .ghost.big { background: var(--card-solid); }

.friend-action {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ========== CALL ACTIONS ========== */
.call-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.call-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.1s ease;
}
.call-action-btn:active:not(:disabled) { transform: scale(0.94); }
.call-action-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.call-action-btn svg { width: 22px; height: 22px; fill: currentColor; }
.call-action-btn.extend {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: var(--gold-2);
  border-color: var(--gold);
}
.call-action-btn.extend .gold-icon { width: 16px; height: 16px; }

/* ========== BOTTOM NAV ========== */
.bottomnav {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 480px;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 10px 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10;
}
.nav-item {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-item:hover { color: var(--accent-2); background: rgba(33, 150, 243, 0.08); }
.nav-item.active { color: var(--accent-2); }
.nav-item.brand {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  font-size: 18px;
  width: 52px;
  height: 52px;
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
}
.nav-item.brand:hover { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; }
.nav-item svg { width: 22px; height: 22px; fill: currentColor; }
.nav-item .dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid white;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--card-strong);
  color: var(--fg);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  max-width: 90%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--danger); }
.toast.gold { border-color: var(--gold); }
.toast.hidden { display: none; }

/* ========== FOOTER ========== */
footer {
  text-align: center;
  margin-top: auto;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ========== BOTTOM NAV SAFE-AREA ========== */
.bottomnav {
  bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 8px));
}

/* ========================================================== */
/* RESPONSIVE                                                  */
/* ========================================================== */

/* Tablet / wider phones: sidebar yine durur ama orb biraz küçülür */
@media (max-width: 640px) {
  .sidebar {
    /* Floating sidebar büyük ekranlarda görünür; dar ekranda yine de görünüp orb'la yarışmasın diye sağa kenara yapışır ve şeffaflaşır */
    right: 6px;
    padding: 6px 4px;
    border-radius: 18px;
  }
  .sidebar-item { min-width: 36px; padding: 6px 4px; }
  .sidebar-item svg { width: 16px; height: 16px; }
  .sidebar-item .count { font-size: 10px; }
}

/* Telefon (≤ 480px): floating sidebar gizlenir, idle stat kartları zaten aynı bilgiyi gösteriyor */
@media (max-width: 480px) {
  .sidebar { display: none; }

  #app { padding-left: 12px; padding-right: 12px; }

  .topbar { gap: 6px; }
  .mode-pill { padding: 8px 14px; font-size: 12px; }
  .currency-badge { padding: 6px 10px; font-size: 13px; }

  .brand h1 { font-size: 22px; }
  .brand .tagline { font-size: 10px; }

  .screen { gap: 14px; }

  .orb-wrap { width: 210px; height: 210px; }
  .orb { width: 144px; height: 144px; }
  .orb svg.phone-icon { width: 52px; height: 52px; }
  .orb-rings span { inset: 33px; }

  .call-orb-wrap { width: 230px; height: 230px; }
  .call-orb { width: 178px; height: 178px; }
  .timer { font-size: 58px; }
  .peer-name { font-size: 13px; }

  .filter-btn { width: 44px; height: 44px; font-size: 20px; }
  .filter-btn svg { width: 20px; height: 20px; }

  .stats > div { padding: 10px 12px; }
  .stats span { font-size: 20px; }

  .vu-wrap { padding: 10px 12px; }

  .call-action-btn { width: 48px; height: 48px; }
  .danger.icon-only { width: 52px; height: 52px; }
  .danger.icon-only svg { width: 24px; height: 24px; }
}

/* Dar telefon (iPhone SE ≤ 380px) */
@media (max-width: 380px) {
  .topbar { flex-direction: row; flex-wrap: wrap; }
  .mode-pill { padding: 7px 12px; font-size: 11px; }
  .currency-row { gap: 5px; }
  .currency-badge { padding: 5px 9px; font-size: 12px; }
  .gold-icon, .gem-icon { width: 12px; }
  .gem-icon { height: 13px; }

  .orb-wrap { width: 190px; height: 190px; }
  .orb { width: 132px; height: 132px; }
  .orb svg.phone-icon { width: 48px; height: 48px; }
  .orb-rings span { inset: 29px; }

  .call-orb-wrap { width: 210px; height: 210px; }
  .call-orb { width: 162px; height: 162px; }
  .timer { font-size: 52px; }

  .filter-row { gap: 6px; }
  .filter-btn { width: 40px; height: 40px; font-size: 18px; }
  .filter-btn svg { width: 18px; height: 18px; }

  .stats { gap: 6px; }
  .stats > div { padding: 8px 10px; }
  .stats span { font-size: 18px; }
  .stats label { font-size: 9px; }

  .bottomnav { padding: 8px 4px; border-radius: 24px; }
  .nav-item { width: 40px; height: 40px; }
  .nav-item.brand { width: 46px; height: 46px; font-size: 16px; }
  .nav-item svg { width: 20px; height: 20px; }
}

/* Çok düşük yükseklik veya landscape telefon */
@media (max-height: 600px) {
  .brand { margin-bottom: 0; }
  .brand .tagline { display: none; }
  .screen { gap: 10px; padding: 4px 0; }

  .orb-wrap { width: 160px; height: 160px; margin: 0; }
  .orb { width: 112px; height: 112px; }
  .orb svg.phone-icon { width: 42px; height: 42px; }
  .orb-rings span { inset: 24px; }

  .call-orb-wrap { width: 180px; height: 180px; }
  .call-orb { width: 138px; height: 138px; }
  .timer { font-size: 44px; }
  .peer-name { font-size: 12px; }

  .filter-btn { width: 38px; height: 38px; }
  .filter-btn svg { width: 16px; height: 16px; }

  .vu-wrap { padding: 8px 10px; }
  .vu .bar { height: 5px; }
}

@media (orientation: landscape) and (max-height: 500px) {
  .sidebar { display: none; }
  .brand { display: none; }
  .stats { max-width: 280px; }
  .stats > div { padding: 6px 10px; }
}

/* Çok geniş ekranlar (masaüstü): orb ve içerik ortada, biraz büyük */
@media (min-width: 768px) {
  #app { max-width: 600px; }
  .orb-wrap { width: 260px; height: 260px; }
  .orb { width: 180px; height: 180px; }
  .orb-rings span { inset: 40px; }
  .call-orb-wrap { width: 290px; height: 290px; }
  .call-orb { width: 220px; height: 220px; }
  .timer { font-size: 72px; }
}
