:root{
  --c1:#ffffff;
  --c2:#bd6baa;
  --c3:#f4d6ff;

  --ink:#141421;
  --shadow: rgba(0,0,0,.30);

  --qLeft: 600px;
  --qTop: 40px;

  --qWidth: 1140px;
  --qHeight: 760px;

  --gap: 40px;
  --radius: 22px;

  --boxBg: #f4d6ff;
  --boxTextDark: #1b1b24;
}

html, body{
  margin:0;
  width:1920px;
  height:1080px;
  overflow:hidden;
  background:transparent;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.root{ position:absolute; inset:0; background:transparent; }

.qWrap{
  position:absolute;
  left: var(--qLeft);
  top: var(--qTop);
  width: var(--qWidth);
  height: var(--qHeight);

  display:flex;
  flex-direction:column;
  gap: var(--gap);
}

.box{
  border-radius: var(--radius);
  background: var(--boxBg);
  border: 4px solid rgba(189,107,170,.90);
  box-shadow: 0 18px 34px var(--shadow);
  overflow:hidden;
}

.boxQuestion{
  flex:1;
  padding: 20px;
  display:flex;
  flex-direction:column;
  min-height: 0;
}

.qHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.qCategory{
  flex:1;
  text-align:center;
  text-transform:uppercase;
  font-size:36px;
  font-weight:1000;
  letter-spacing:1.4px;
  color:var(--boxTextDark);
}

.qValue{
  min-width:120px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(189,107,170,.95);
  color:#fff;
  font-size:30px;
  font-weight:1000;
}

.qContent{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  margin-top: 18px;
  min-height: 0;
}

.qPrompt{
  border-radius:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:18px 22px;
  font-size:36px;
  font-weight:950;
  line-height:1.2;
  box-shadow:0 10px 18px rgba(0,0,0,.18);
  text-align:center;
  max-width:1000px;
  margin:0 auto;
  white-space: pre-line;
}

.boxAnswer{
  height:110px;
  padding:10px 20px;
  display:flex;
  min-height: 0;
}

.answerCenter{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  flex-direction:column;
  gap: 4px;
}

.answerText{
  font-size:48px;
  font-weight:1000;
  line-height:1.05;
  color:rgba(20,20,30,.92);
}
.answerText.muted{ color:rgba(20,20,30,.28); }