@charset "UTF-8";

/* apps/projector/src/styles.scss */
:root {
  --sans: "Plus Jakarta Sans", sans-serif;
  --serif:
    "Cormorant Garamond",
    Georgia,
    serif;
  --bg: #faf8f4;
  --ink: #1a1713;
  --gold: #b08947;
  --gold-deep: #8f6e34;
  --cream: #f7efdd;
  --line: #e8e2d8;
  --line-soft: #ede8df;
  --card: #ffffff;
  --card-soft: #fbfaf7;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
@keyframes wl-rise {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wl-fall {
  from {
    opacity: 0;
    transform: translateY(-34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wl-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  62% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes wl-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wl-slideL {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wl-grow {
  from {
    height: 0;
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes wl-draw {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes wl-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.5;
  }
}
@keyframes wl-confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(1220px) rotate(460deg);
    opacity: 0;
  }
}
.a-rise {
  animation: wl-rise var(--du, 0.7s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-fall {
  animation: wl-fall var(--du, 0.7s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-pop {
  animation: wl-pop var(--du, 0.7s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-fade {
  animation: wl-fade var(--du, 0.7s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-slideL {
  animation: wl-slideL var(--du, 0.7s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-grow {
  animation: wl-grow var(--du, 0.75s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-draw {
  stroke-dasharray: 40;
  animation: wl-draw var(--du, 0.5s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}
.a-pulse {
  animation: wl-pulse 2s cubic-bezier(0.22, 0.61, 0.36, 1) 0s infinite both;
}
.frame {
  width: 1920px;
  height: 1080px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.glow {
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background:
    radial-gradient(
      85% 80% at 50% 0%,
      rgba(176, 137, 71, 0.1),
      transparent 64%);
  pointer-events: none;
}
.hd {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 52px 80px 0;
  flex: none;
}
.hd-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hd-brand span {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.hd-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid rgba(176, 137, 71, 0.45);
  border-radius: 100px;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.hd-badge .of {
  color: var(--gold);
  opacity: 0.65;
}
.hd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(176, 137, 71, 0.7);
}
.bd {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 96px;
  min-height: 0;
}
.ans {
  display: flex;
  align-items: center;
  gap: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 52px;
}
.ans-key {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 23, 19, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-family: var(--serif);
  font-size: 38px;
  color: rgba(26, 23, 19, 0.5);
}
.ans-text {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 400;
}
.ans.correct {
  background: var(--cream);
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 30px rgba(176, 137, 71, 0.18);
}
.ans.correct .ans-key {
  background: var(--gold);
  border: none;
}
.ans.correct .ans-text {
  font-weight: 600;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
