/* Dark embed theme that matches your app screenshots */

:root {
  --bg: #343434;
  --surface: #343434;
  --surface-2: #343434;
  --border: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.45);
  --accent: #2dd4bf; /* teal-ish */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
}

html,
body {
  height: 100%;
}

body.embed {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}


.embed-page{
  max-width: fixed;
  margin: 0 auto;
  padding: 28px 40px 48px;
  color: #e7e7e7;
}

.embed-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.embed-h1{
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.embed-meta-row{
  display:flex;
  gap: 16px;
  color: #a8a8a8;
  font-size: 12px;
}

.embed-icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(76, 230, 201, 0.35);
  background: rgba(20, 24, 24, 0.6);
  color: #4ce6c9;
  font-size: 18px;
  cursor: pointer;
}

.embed-section-title{
  margin: 26px 0 12px;
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #4ce6c9;
}

.embed-stack{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

/* Question cards */
.qa-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.qa-question{
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  margin-bottom: 12px;
}

/* Rating row */
.qa-rating-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.qa-rating-text{
  color:#bdbdbd;
  font-size: 12px;
}

.qa-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 1px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.qa-pill--strong{
  color: #86efac;
}

.qa-pill--partial{
  color: #fde68a;
}

.qa-pill--weak{
  color: #fecaca;
}

/* The inset “quote” block */
.qa-quote {
  margin-top: 8px;
  padding-left: 16px;
  margin-left: 6px;

  border-left: 2px solid rgba(255,255,255,0.12);

  background: transparent;
  border-radius: 0;
  font-size: 16px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* Small helper label above quote (optional) */
.qa-subtitle{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8e8e8e;
  margin: 8px 0 6px;
}
