/* playstoretesters.com - main stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ─── TOKENS ───────────────────────────────────────────────── */
:root {
  --bg:         #0d1117;
  --bg2:        #161b22;
  --bg3:        #21262d;
  --border:     #30363d;
  --green:      #3fb950;
  --green-dim:  #238636;
  --green-glow: rgba(63,185,80,.18);
  --text:       #e6edf3;
  --text-muted: #8b949e;
  --text-dim:   #484f58;
  --accent:     #58a6ff;
  --danger:     #f85149;
  --warning:    #d29922;
  --radius:     10px;
  --radius-lg:  16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text);
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-muted); font-size: 14px; padding: 6px 12px;
  border-radius: 6px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg3); text-decoration: none; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; font-family: var(--font-body);
  border: none; cursor: pointer; transition: all .15s; text-decoration: none;
  line-height: 1;
}
.btn-green {
  background: var(--green); color: #0d1117;
}
.btn-green:hover { background: #56d364; text-decoration: none; color: #0d1117; }
.btn-green-outline {
  background: transparent; color: var(--green);
  border: 1px solid var(--green-dim);
}
.btn-green-outline:hover { background: var(--green-glow); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); text-decoration: none; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(63,185,80,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 .hi { color: var(--green); }
.hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted); max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--text);
  display: block;
}
.stat-item .lbl {
  font-size: 13px; color: var(--text-muted);
}

/* ─── SECTION ──────────────────────────────────────────────── */
section { padding: 72px 0; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted); font-size: 16px;
  max-width: 500px;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 48px;
  background: var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--bg2); padding: 32px 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--green); margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-top: 48px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--green-dim); }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--green-glow);
  border: 1px solid var(--green-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 460px; margin: 48px auto 0;
  position: relative;
}
.pricing-card .badge-best {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #0d1117;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.pricing-price {
  display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 6px;
}
.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700; color: var(--text);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 24px; color: var(--text-muted); margin-bottom: 6px;
}
.pricing-price .per {
  font-size: 14px; color: var(--text-muted); margin-bottom: 8px;
}
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--bg3);
  font-size: 14px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .chk { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px; margin-top: 48px;
}
.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.review-stars { color: #e3b341; font-size: 13px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--green);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-country { font-size: 12px; color: var(--text-muted); }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; max-width: 720px; }
details {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
details:first-child { border-top: 1px solid var(--border); }
summary {
  font-size: 15px; font-weight: 500; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
summary::after {
  content: '+'; font-size: 20px; color: var(--text-muted);
  flex-shrink: 0; transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--bg2) 0%, #0d2316 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 0; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  margin-bottom: 12px;
}
.cta-band p { color: var(--text-muted); margin-bottom: 32px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 40px 0; text-align: center;
  color: var(--text-muted); font-size: 13px;
}
footer a { color: var(--text-muted); }
footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 16px; }

/* ─── FORMS ────────────────────────────────────────────────── */
.form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 480px; margin: 0 auto;
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; margin-bottom: 6px;
}
.form-card .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
input[type="text"], input[type="email"], input[type="password"], input[type="url"], textarea, select {
  width: 100%; padding: 10px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-size: 14px; font-family: var(--font-body);
  transition: border-color .15s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--green-dim); }
input::placeholder, textarea::placeholder { color: var(--text-dim); }
textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

/* ─── ALERTS ───────────────────────────────────────────────── */
.alert {
  padding: 12px 16px; border-radius: 8px; font-size: 14px;
  margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: rgba(63,185,80,.12); border: 1px solid var(--green-dim); color: var(--green); }
.alert-error   { background: rgba(248,81,73,.12);  border: 1px solid #6e1c1c;  color: #ff7b72; }
.alert-info    { background: rgba(88,166,255,.10); border: 1px solid #1f4b6e;  color: var(--accent); }

/* ─── DASHBOARD ────────────────────────────────────────────── */
.page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.page-header h1 { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.page-header p  { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

.orders-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.order-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.order-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.order-card-title { font-weight: 600; font-size: 16px; }
.order-card-date  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.status-badge {
  font-size: 12px; font-weight: 600; padding: 3px 10px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.status-pending   { background: rgba(210,153,34,.15);  color: var(--warning); border: 1px solid rgba(210,153,34,.3); }
.status-paid      { background: rgba(88,166,255,.12);  color: var(--accent);  border: 1px solid rgba(88,166,255,.3); }
.status-active    { background: var(--green-glow);     color: var(--green);   border: 1px solid var(--green-dim); }
.status-completed { background: rgba(63,185,80,.08);   color: var(--text-muted); border: 1px solid var(--border); }
.status-refunded  { background: rgba(248,81,73,.10);   color: var(--danger);  border: 1px solid rgba(248,81,73,.3); }

.progress-bar-wrap {
  background: var(--bg3); border-radius: 999px; height: 6px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; background: var(--green); border-radius: 999px;
  transition: width .5s ease;
}
.progress-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-muted); margin-top: 6px;
}

.tester-list { list-style: none; }
.tester-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--bg3); font-size: 14px;
}
.tester-item:last-child { border-bottom: none; }
.tester-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.tester-dot.in  { background: var(--green); box-shadow: 0 0 5px var(--green); }
.tester-dot.out { background: var(--text-dim); }
.tester-email   { flex: 1; color: var(--text-muted); }

/* ─── ADMIN TABLE ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  text-align: left; padding: 10px 14px;
  background: var(--bg3); color: var(--text-muted);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; border-bottom: 1px solid var(--border);
}
td { padding: 12px 14px; border-bottom: 1px solid var(--bg3); vertical-align: middle; }
tr:hover td { background: rgba(255,255,255,.015); }

/* ─── SUCCESS PAGE ─────────────────────────────────────────── */
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-glow); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 64px 0 52px; }
  .hero-stats { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  nav .nav-links .hide-mobile { display: none; }
}

/* ─── WIZARD ───────────────────────────────────────────────── */
.wizard-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 32px; overflow-x: auto;
}
.wstep {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  white-space: nowrap; flex-shrink: 0;
}
.wstep.active { background: var(--green-glow); border: 1px solid var(--green-dim); }
.wstep.done .wstep-icon { background: var(--green); color: #0d1117; }
.wstep-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.wstep-label { font-size: 13px; font-weight: 600; }
.wstep-num { font-size: 11px; color: var(--text-muted); }
.wstep-line {
  flex: 1; height: 1px; background: var(--border); min-width: 24px;
}
.wstep-line.active { background: var(--green-dim); }

.wizard-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  margin-bottom: 20px;
}
.wizard-card h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }

/* ─── SETUP STEPS ──────────────────────────────────────────── */
.setup-steps details {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 10px; padding: 0; overflow: hidden;
}
.setup-steps details:first-child { border-top: 1px solid var(--border); }
.setup-steps summary {
  padding: 16px 20px; font-weight: 500; font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  background: var(--bg3);
}
.setup-steps summary::after { content: none; }
.setup-steps details[open] summary { border-bottom: 1px solid var(--border); }
.setup-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-glow); border: 1px solid var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--green); flex-shrink: 0;
}
.setup-body { padding: 20px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.setup-body p { margin-bottom: 10px; }

.copy-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; margin: 12px 0;
}
.copy-box code { flex: 1; font-size: 13px; color: var(--accent); font-family: monospace; }

/* ─── UPLOAD AREA ──────────────────────────────────────────── */
.upload-area {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 28px; text-align: center; cursor: pointer;
  transition: border-color .2s; font-size: 14px; color: var(--text-muted);
}
.upload-area:hover { border-color: var(--green-dim); }

@media (max-width: 640px) {
  .wizard-card { padding: 20px; }
  .wizard-steps { gap: 0; }
  .wstep-label { display: none; }
}

/* ─── SETUP STEPS V2 ───────────────────────────────────────── */
.setup-steps-v2 { display: flex; flex-direction: column; }

.setup-row {
  border-bottom: 1px solid var(--border);
}
.setup-row:first-child { border-top: 1px solid var(--border); }

.setup-row-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px; cursor: pointer; user-select: none;
  transition: background .1s;
}
.setup-row-header:hover { background: rgba(255,255,255,.02); border-radius: 6px; }

.setup-row-left {
  display: flex; align-items: center; gap: 14px;
}
.setup-row-title {
  font-size: 15px; font-weight: 500; color: var(--text);
}

.setup-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.setup-row.open .setup-toggle {
  background: var(--green-glow); border-color: var(--green-dim); color: var(--green);
}

.setup-row-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 4px;
}
.setup-row.open .setup-row-body { padding-bottom: 20px; }

.setup-row-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }

/* Guide screenshots */
.setup-screenshots {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;
}
.setup-screenshots img {
  height: 110px; border-radius: 8px; border: 1px solid var(--border);
  cursor: zoom-in; object-fit: cover; transition: opacity .15s;
  background: var(--bg3);
}
.setup-screenshots img:hover { opacity: .85; }

/* How do I find this link */
.how-to-link {
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: var(--accent); margin-left: 8px;
  padding: 0; text-decoration: underline;
}
.how-to-link:hover { color: #79b8ff; }

/* ─── PLAN SELECTOR ────────────────────────────────────────── */
.plan-option {
  display: block; padding: 16px 20px;
  border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.plan-option:hover { border-color: var(--green-dim); }
.plan-option.selected {
  border-color: var(--green); background: var(--green-glow);
}

/* ─── LOGO ─────────────────────────────────────────────────── */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 260px;
  display: block;
}
@media (max-width: 640px) {
  .nav-logo-img { height: 22px; max-width: 130px; }
}

/* ─── USER DROPDOWN ────────────────────────────────────────── */
.user-dropdown { position: relative; }

.user-dropdown-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px;
  color: var(--text); cursor: pointer; font-size: 13px;
  font-family: var(--font-body); transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.user-dropdown-btn:hover { border-color: var(--text-muted); background: var(--bg2); }
.user-dropdown-btn.open { border-color: var(--green-dim); }

.user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-glow); border: 1px solid var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}

.user-email {
  overflow: hidden; text-overflow: ellipsis;
  max-width: 160px; color: var(--text-muted);
}

.user-chevron {
  color: var(--text-muted); flex-shrink: 0;
  transition: transform .2s;
}
.user-dropdown-btn.open .user-chevron { transform: rotate(180deg); }

.user-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4); z-index: 200;
  overflow: hidden;
}
.user-dropdown-menu.open { display: block; }

.dropdown-email {
  padding: 14px 16px 12px; font-size: 13px; color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; color: var(--text);
  text-decoration: none; transition: background .1s;
}
.dropdown-item:hover { background: var(--bg3); text-decoration: none; }
.dropdown-item svg { color: var(--text-muted); flex-shrink: 0; }

.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

.dropdown-item-danger { color: var(--danger); }
.dropdown-item-danger svg { color: var(--danger); }
.dropdown-item-danger:hover { background: rgba(248,81,73,.08); }

/* ─── PRESET BUTTONS ───────────────────────────────────────── */
.preset-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 10px;
  font-size: 11px; color: var(--text-muted);
  cursor: pointer; transition: all .15s; font-family: var(--font-body);
  text-align: left; line-height: 1.4;
}
.preset-btn:hover { border-color: var(--danger); color: var(--text); }
.preset-btn.active { border-color: var(--danger); color: var(--danger); background: rgba(248,81,73,.08); }

/* ─── LOGS ─────────────────────────────────────────────────── */
.log-info td    { color: var(--text-muted); }
.log-success td { color: #3fb950; }
.log-warn td    { color: #d29922; }
.log-error td   { color: #f85149; background: rgba(248,81,73,.05); }
.log-accent td  { color: #58a6ff; }
.log-admin td   { color: #bc8cff; }
tr.log-info:hover td, tr.log-success:hover td, tr.log-warn:hover td,
tr.log-error:hover td, tr.log-accent:hover td, tr.log-admin:hover td {
  background: rgba(255,255,255,.03);
}
.log-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; margin-right: 4px;
  vertical-align: middle;
}
