:root {
  color-scheme: light dark;
  --bg-light: linear-gradient(135deg, #f8fafc, #eef2ff);
  --bg-dark: linear-gradient(135deg, #0f172a, #020617);
  --card-light: rgba(255, 255, 255, 0.7);
  --card-dark: rgba(15, 23, 42, 0.7);
  --text-light: #0f172a;
  --text-dark: #e2e8f0;
  --muted-light: #64748b;
  --muted-dark: #94a3b8;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-dark: rgba(148, 163, 184, 0.2);
  --accent: linear-gradient(135deg, #6366f1, #8b5cf6);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text-light);
  background: var(--bg-light);
  min-height: 100vh;
}

@media (prefers-color-scheme: dark) {
  body {
    color: var(--text-dark);
    background: var(--bg-dark);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  position: relative;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--card-light);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

@media (prefers-color-scheme: dark) {
  .topbar {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
  }
}

.brand {
  font-weight: 600;
  font-size: 18px;
}

.lang-dropdown {
  position: relative;
  z-index: 1;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  min-height: 40px;
  white-space: nowrap;
}

.lang-flag {
  font-size: 1.05em;
  line-height: 1;
}

.lang-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang-chevron {
  font-size: 10px;
  opacity: 0.65;
  margin-left: 2px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 148px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 14px;
  background: var(--card-light);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

@media (prefers-color-scheme: dark) {
  .lang-dropdown-menu {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
}

.lang-dropdown-item:hover,
.lang-dropdown-item:focus-visible {
  background: rgba(99, 102, 241, 0.12);
  outline: none;
}

.lang-dropdown-item.is-active {
  background: rgba(99, 102, 241, 0.18);
  font-weight: 600;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ad-card { padding: 14px; }

/* Ad slots — placeholder now; inject real units into [data-ad-live] later */
.ad-slot {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ad-slot--leaderboard {
  min-height: 90px;
  max-height: 120px;
}

.ad-slot--banner {
  min-height: 90px;
  max-height: 100px;
}

.ad-slot--rectangle {
  min-height: 250px;
}

.ad-slot--rewarded {
  min-height: 180px;
}

.ad-unit {
  width: 100%;
}

.ad-unit--placeholder {
  border: 1.5px dashed rgba(99, 102, 241, 0.35);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(99, 102, 241, 0.04) 0%,
    rgba(139, 92, 246, 0.06) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-height: inherit;
}

@media (prefers-color-scheme: dark) {
  .ad-unit--placeholder {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(
      145deg,
      rgba(99, 102, 241, 0.08) 0%,
      rgba(139, 92, 246, 0.1) 100%
    );
  }
}

.ad-unit-inner {
  text-align: center;
  max-width: 320px;
}

.ad-unit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

@media (prefers-color-scheme: dark) {
  .ad-unit-badge {
    color: #a5b4fc;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
  }
}

.ad-unit-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.01em;
}

.ad-unit-hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted-light);
  opacity: 0.85;
}

@media (prefers-color-scheme: dark) {
  .ad-unit-label,
  .ad-unit-hint {
    color: var(--muted-dark);
  }
}

.ad-unit--live {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-unit--live:not(.hidden) + .ad-unit--placeholder,
.ad-slot:has(.ad-unit--live:not(.hidden)) .ad-unit--placeholder {
  display: none;
}

.main-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.hero {
  margin-top: 20px;
  padding: clamp(20px, 5vw, 36px) clamp(16px, 4vw, 32px);
  text-align: center;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 auto 20px;
  max-width: 640px;
  font-size: clamp(0.95rem, 2.8vw, 1.08rem);
  line-height: 1.55;
  color: var(--muted-light);
}

.hero-seo-note {
  margin: -8px auto 20px;
  max-width: 620px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-light);
  opacity: 0.9;
}

@media (prefers-color-scheme: dark) {
  .hero-subtitle { color: var(--muted-dark); }
  .hero-seo-note { color: var(--muted-dark); }
}

.hero-benefits {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 720px;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.hero-benefits li::before {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
  color: #6366f1;
}

@media (prefers-color-scheme: dark) {
  .hero-benefits li {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
  }
  .hero-benefits li::before { color: #a78bfa; }
}

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

.hero-cta {
  min-width: min(100%, 220px);
  flex: 1 1 180px;
  max-width: 280px;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}

.row-selected {
  background: rgba(99, 102, 241, 0.18) !important;
}

.btn { transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease; }
.btn:active { transform: translateY(1px); }
.btn.flash-success {
  background: #10b981 !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18) !important;
  animation: btnFlash 0.25s ease;
}
.btn.flash-error {
  background: #ef4444 !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.20) !important;
  animation: btnFlash 0.25s ease;
}
@keyframes btnFlash {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.msg-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.msg-modal.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.msg-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 36, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.msg-modal-content {
  position: relative;
  width: min(880px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--card-light);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: pop 0.22s ease;
}
@keyframes pop {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1);     opacity: 1; }
}
@media (prefers-color-scheme: dark) {
  .msg-modal-content {
    background: var(--card-dark);
    color: var(--text-dark);
    border-color: var(--border-dark);
  }
}
.msg-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 10px;
  border-radius: 8px;
}
.msg-modal-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}
.msg-modal-header {
  padding: 18px 56px 12px 22px;
  border-bottom: 1px solid var(--border-light);
}
@media (prefers-color-scheme: dark) {
  .msg-modal-header { border-bottom-color: var(--border-dark); }
}
.msg-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
  word-break: break-word;
}
.msg-modal-meta strong { margin-right: 6px; }
.msg-modal-body {
  padding: 18px 22px 22px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.55;
}
.msg-modal-body img,
.msg-modal-body table { max-width: 100%; height: auto; }
.msg-modal-body a { color: #4f46e5; text-decoration: underline; }
.msg-modal-body a:hover { color: #6366f1; }
@media (prefers-color-scheme: dark) {
  .msg-modal-body a { color: #818cf8; }
  .msg-modal-body a:hover { color: #a5b4fc; }
}
.msg-html { font-size: 14px; line-height: 1.55; }
.msg-html * { max-width: 100%; }
.msg-html p, .msg-html div { margin: 0 0 8px; }
.msg-html h1, .msg-html h2, .msg-html h3 { margin: 14px 0 8px; line-height: 1.3; }
.msg-html ul, .msg-html ol { padding-left: 22px; margin: 8px 0; }
.msg-html blockquote {
  border-left: 3px solid rgba(99, 102, 241, 0.4);
  margin: 8px 0;
  padding: 4px 12px;
  color: inherit;
  opacity: 0.85;
}
.msg-text {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.55;
  font-family: inherit;
}
body.modal-open { overflow: hidden; }

.card {
  padding: 18px;
  border-radius: 16px;
  background: var(--card-light);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}
.card:hover { transform: translateY(-2px); }

@media (prefers-color-scheme: dark) {
  .card {
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
  }
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 12px;
}

.email-display {
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.98);
  transition: transform 0.3s ease;
}
.email-display.animate {
  transform: scale(1);
}
@media (prefers-color-scheme: dark) {
  .email-display {
    border: 1px solid var(--border-dark);
    background: rgba(2, 6, 23, 0.4);
  }
}

.muted {
  color: var(--muted-light);
  font-size: 12px;
}
@media (prefers-color-scheme: dark) {
  .muted { color: var(--muted-dark); }
}

.field {
  margin-top: 12px;
}
label {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}
select, input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.6);
  color: inherit;
}
@media (prefers-color-scheme: dark) {
  select, input {
    border: 1px solid var(--border-dark);
    background: rgba(2, 6, 23, 0.4);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
.btn .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-text { opacity: 0.6; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
.btn.secondary {
  background: rgba(15, 23, 42, 0.2);
  color: inherit;
}
@media (prefers-color-scheme: dark) {
  .btn.secondary {
    background: rgba(148, 163, 184, 0.2);
  }
}

.btn-group {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  font-size: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  text-align: left;
  padding: 10px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}
@media (prefers-color-scheme: dark) {
  .table th, .table td { border-bottom: 1px solid var(--border-dark); }
}
.table tr:hover {
  background: rgba(99, 102, 241, 0.06);
}

.inbox-status-bar {
  height: 3px;
  border-radius: 3px;
  overflow: hidden;
  background: transparent;
  margin: 6px 0 12px;
  position: relative;
}
.inbox-status-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #6366f1, transparent);
  animation: livebar 2s linear infinite;
}

.inbox-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 6vw, 40px) 16px;
  min-height: 200px;
  border-radius: 14px;
  background: linear-gradient(
    160deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.04) 100%
  );
  border: 1px dashed rgba(99, 102, 241, 0.2);
}

@media (prefers-color-scheme: dark) {
  .inbox-empty {
    background: linear-gradient(
      160deg,
      rgba(99, 102, 241, 0.1) 0%,
      rgba(139, 92, 246, 0.08) 100%
    );
    border-color: rgba(139, 92, 246, 0.28);
  }
}

.inbox-empty-visual {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.inbox-empty-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  animation: inboxPulse 2s ease-out infinite;
}

.inbox-empty-core {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

@keyframes inboxPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.inbox-empty-title {
  margin: 0 0 8px;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 600;
  color: inherit;
}

.inbox-empty-hint {
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-light);
}

@media (prefers-color-scheme: dark) {
  .inbox-empty-hint {
    color: var(--muted-dark);
  }
}

.inbox-table-wrap.hidden {
  display: none;
}

@keyframes livebar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(99, 102, 241, 0.0); }
  50% { box-shadow: 0 0 18px rgba(99, 102, 241, 0.35); }
  100% { box-shadow: 0 0 0 rgba(99, 102, 241, 0.0); }
}

.row {
  padding: 12px;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.row:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateX(4px);
}

.skeleton-row {
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(148,163,184,0.15), rgba(148,163,184,0.35), rgba(148,163,184,0.15));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.preview {
  min-height: 240px;
  font-size: 14px;
  line-height: 1.5;
}

.preview-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.preview-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.preview-meta {
  font-size: 12px;
  opacity: 0.85;
  display: grid;
  gap: 6px;
}
.preview.premium {
  background: rgba(99, 102, 241, 0.06);
  padding: 20px;
  border-radius: 16px;
  overflow: auto;
  max-height: 70vh;
  border: 1px solid var(--border-light);
}
@media (prefers-color-scheme: dark) {
  .preview.premium { border: 1px solid var(--border-dark); }
}

.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -28px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  transition: opacity 0.2s ease;
}
.tooltip.show::after { opacity: 1; }

.footer-links a {
  margin-right: 12px;
  font-size: 12px;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
}
.footer-links a:hover { opacity: 1; }

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.5);
  border-radius: 3px;
}

.hidden { display: none !important; }

.recovery-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.recovery-code {
  flex: 1 1 160px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.recover-modal-content {
  max-width: 520px;
}

.recover-result {
  margin-top: 12px;
  font-size: 14px;
}

.recover-unlock {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.recover-locked-email {
  margin: 8px 0 4px;
  font-size: 15px;
  word-break: break-all;
}

.recover-locked-meta {
  margin: 0 0 14px;
  font-size: 13px;
}

.recover-unlock-intro {
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.14);
  color: inherit;
}

@media (prefers-color-scheme: dark) {
  .recover-unlock {
    border-top-color: var(--border-dark);
  }
  .recover-unlock-intro {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.22);
  }
}

.unlock-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-unlock-ad {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 18px;
  width: 100%;
  text-align: center;
}

.btn-unlock-ad:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.42);
}

.btn-unlock-pix {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
}

.btn-unlock-dev {
  width: 100%;
  font-size: 12px;
  opacity: 0.85;
}

#recoverInput {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font: inherit;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-btn {
  padding: 8px 12px;
  font-size: 13px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 8px 0 12px;
}

.ad-placeholder,
.pix-qr-placeholder {
  min-height: 120px;
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  margin: 10px 0;
}

.account-mailbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.account-mailbox-item {
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.account-mailbox-item .account-use-btn {
  margin-top: 8px;
}

@media (prefers-color-scheme: dark) {
  #recoverInput {
    border-color: var(--border-dark);
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-dark);
  }
  .ad-placeholder,
  .pix-qr-placeholder,
  .account-mailbox-item {
    border-color: var(--border-dark);
  }
}

/* SEO landing pages */
.seo-breadcrumbs {
  margin-top: 16px;
  font-size: 13px;
}

.seo-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted-light);
}

.seo-breadcrumbs-list li + li::before {
  content: "›";
  margin-right: 6px;
  opacity: 0.55;
}

.seo-breadcrumbs-list a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.seo-breadcrumbs-list a:hover {
  color: #6366f1;
  text-decoration: underline;
}

.seo-intro {
  margin: 0 auto 20px;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-light);
  text-align: left;
}

.seo-related {
  margin-top: 20px;
  padding: clamp(18px, 4vw, 28px);
}

.seo-related-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.seo-related-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
}

.seo-related-list a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.seo-related-list a:hover {
  text-decoration: underline;
}

.seo-related-more {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--muted-light);
}

.seo-related-more a {
  color: #6366f1;
  font-weight: 500;
  text-decoration: none;
}

.seo-related-more a:hover {
  text-decoration: underline;
}

.seo-page .seo-hero {
  margin-top: 20px;
  padding: clamp(20px, 5vw, 36px) clamp(16px, 4vw, 32px);
  text-align: center;
}

.seo-hero-title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seo-hero-subtitle {
  margin: 0 auto 20px;
  max-width: 720px;
  font-size: clamp(0.95rem, 2.8vw, 1.08rem);
  line-height: 1.55;
  color: var(--muted-light);
}

@media (prefers-color-scheme: dark) {
  .seo-hero-subtitle { color: var(--muted-dark); }
}

.seo-benefits {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 820px;
}

.seo-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.seo-benefits li::before {
  content: "✔";
  font-size: 0.72rem;
  font-weight: 700;
  color: #6366f1;
}

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

.seo-ad-card {
  margin-top: 20px;
}

.seo-faq {
  margin-top: 20px;
  padding: clamp(18px, 4vw, 28px);
}

.seo-faq-title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
}

.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.35);
}

.seo-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  content: "+";
  float: right;
  opacity: 0.5;
}

.seo-faq-item[open] summary::after {
  content: "−";
}

.seo-faq-item p {
  margin: 10px 0 0;
  line-height: 1.55;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.seo-tool-label {
  margin: 24px 0 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-align: center;
}

.seo-404 {
  margin-top: 20px;
  padding: 40px 24px;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .seo-breadcrumbs-list { color: var(--muted-dark); }
  .seo-intro { color: var(--muted-dark); }
  .seo-related-more { color: var(--muted-dark); }
  .seo-related-list a { color: #a78bfa; }
  .seo-faq-item {
    border-color: var(--border-dark);
    background: rgba(15, 23, 42, 0.35);
  }
  .seo-faq-item p { color: var(--muted-dark); }
  .seo-benefits li {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
  }
  .seo-benefits li::before { color: #a78bfa; }
}
