/* ExamPro tour overlay & spotlight */
.ept-overlay{
  position:fixed; inset:0; background:rgba(8,14,32,.62); z-index:9998;
  backdrop-filter:blur(2px);
}
.ept-spot{
  position:absolute; z-index:9999; border-radius:12px;
  box-shadow:0 0 0 4px rgba(232,179,65,.9), 0 0 0 9999px rgba(8,14,32,.62);
  transition:all .2s ease; pointer-events:none;
}
.ept-tip{
  position:absolute; z-index:10000; background:#fff; color:#0c1220;
  border-radius:14px; padding:18px 18px 14px; width:min(360px, calc(100vw - 24px));
  box-shadow:0 30px 90px -20px rgba(8,14,32,.55);
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  animation:eptIn .25s ease;
}
@keyframes eptIn{ from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.ept-tip h3{ margin:6px 0 6px; font-family:'Fraunces',serif; font-size:20px }
.ept-tip p{ margin:0 0 14px; font-size:14.5px; line-height:1.45; color:#26324a }
.ept-tip-step{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#1f4ad6; font-weight:700 }
.ept-tip-actions{ display:flex; gap:8px; align-items:center }
.ept-tip-actions button{
  border:0; padding:8px 14px; border-radius:10px; cursor:pointer;
  font-weight:600; font-size:13.5px; font-family:inherit;
}
.ept-tip-actions .ept-next{ background:#15307a; color:#fff }
.ept-tip-actions .ept-next:hover{ background:#1f4ad6 }
.ept-tip-actions .ept-prev{ background:#eef2ff; color:#15307a }
.ept-tip-actions .ept-skip{ background:transparent; color:#64708a; text-decoration:underline; padding-left:0 }
body.theme-dark .ept-tip{ background:#121a32; color:#e6ecff }
body.theme-dark .ept-tip p{ color:#c8d2ee }
body.ept-active{ overflow:hidden }
#tourBtn{ font-size:18px }
