/* ═══════════════════════════════════════════════════════
   POLICE MODULE — LekhpalSathi.com
   UP Police Constable Preparation — Full Stylesheet
═══════════════════════════════════════════════════════ */

/* ── POLICE VARIABLES ── */
:root {
  --police: #3b82f6;
  --police-d: #2563eb;
  --police-l: #93c5fd;
  --police-v: #1d4ed8;
  --police-gold: #f59e0b;
  --police-bg: #030712;
  --police-card: rgba(59,130,246,.06);
  --police-border: rgba(59,130,246,.15);
  --police-text: #e2e8f0;
  --police-muted: rgba(255,255,255,.4);
  --police-dim: rgba(255,255,255,.22);
}

/* ── POLICE BODY ── */
.police-body {
  background: var(--police-bg);
  color: var(--police-text);
  min-height: 100vh;
  padding-top: 0;
}
.police-body .navbar {
  top: 0 !important;
  background: rgba(3,7,18,.98) !important;
  border-bottom: 1px solid var(--police-border) !important;
}

/* ── POLICE NAV EXTRAS ── */
.police-back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--police-muted); font-size: .72rem; font-weight: 700;
  text-decoration: none; padding: .3rem .7rem; border-radius: 6px;
  border: 1px solid var(--police-border); transition: all .18s;
  letter-spacing: .01em;
}
.police-back-link:hover { color: var(--police-l); border-color: rgba(59,130,246,.4); background: rgba(59,130,246,.08); }

.nav-police-btn {
  background: linear-gradient(135deg, var(--police), var(--police-v)) !important;
  color: #fff !important; border-radius: 8px !important;
  padding: .38rem .9rem !important; font-weight: 900 !important;
  font-size: .72rem !important; white-space: nowrap;
  box-shadow: 0 0 12px rgba(59,130,246,.4);
  border: 1px solid rgba(255,255,255,.15) !important;
  transition: filter .18s, transform .18s !important;
}
.nav-police-btn:hover { filter: brightness(1.12); transform: translateY(-1px) !important; }

/* ── POLICE HERO ── */
.police-hero {
  background: linear-gradient(135deg, #030712 0%, #0a1628 50%, #030a1a 100%);
  padding: 3.5rem 1.2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--police-border);
  position: relative; overflow: hidden;
}
.police-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59,130,246,.18) 0%, transparent 70%);
  pointer-events: none;
}
.police-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.35);
  border-radius: 99px; padding: .32rem 1rem;
  font-size: .68rem; font-weight: 900; color: var(--police-l);
  letter-spacing: .08em; margin-bottom: 1.2rem;
}
.police-hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--police-l);
  animation: policePulse 1.4s ease-in-out infinite;
}
@keyframes policePulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.5} }

.police-hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, var(--police-l) 70%, var(--police-v));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .6rem; line-height: 1.15;
}
.police-hero-sub {
  font-size: clamp(.85rem, 2vw, 1.1rem); color: var(--police-muted);
  margin-bottom: 1.8rem; font-weight: 600;
}
.police-hero-btns {
  display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.police-btn-primary {
  background: linear-gradient(135deg, var(--police), var(--police-v));
  color: #fff; border: none; border-radius: 10px;
  padding: .75rem 1.8rem; font-size: .88rem; font-weight: 900;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 20px rgba(59,130,246,.45);
  transition: transform .18s, box-shadow .18s;
}
.police-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(59,130,246,.6); }
.police-btn-secondary {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18); border-radius: 10px;
  padding: .75rem 1.8rem; font-size: .88rem; font-weight: 800;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
  transition: background .18s, border-color .18s;
}
.police-btn-secondary:hover { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.4); }

/* Countdown in hero */
.police-countdown {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}
.police-cd-box {
  background: rgba(255,255,255,.05); border: 1px solid var(--police-border);
  border-radius: 10px; padding: .7rem 1rem; min-width: 72px; text-align: center;
}
.police-cd-num {
  font-size: 1.6rem; font-weight: 900; color: var(--police-l);
  display: block; line-height: 1;
}
.police-cd-lbl {
  font-size: .6rem; color: var(--police-muted); font-weight: 700;
  letter-spacing: .06em; display: block; margin-top: .2rem;
}

/* ── QUICK STATS BAR ── */
.police-stats-bar {
  background: rgba(59,130,246,.06);
  border-bottom: 1px solid var(--police-border);
  padding: 1.2rem 1.2rem;
}
.police-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.police-stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; text-align: center;
}
.police-stat-num {
  font-size: 1.5rem; font-weight: 900; color: #fff;
}
.police-stat-num span { color: var(--police-l); }
.police-stat-lbl { font-size: .65rem; color: var(--police-muted); font-weight: 700; letter-spacing: .05em; }

/* ── MODULE GRID ── */
.police-modules-wrap {
  max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.2rem;
}
.police-section-head {
  text-align: center; margin-bottom: 1.8rem;
}
.police-section-title {
  font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: .3rem;
}
.police-section-sub { font-size: .8rem; color: var(--police-muted); }

.police-modules-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.police-mod-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 14px; padding: 1.4rem 1.2rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .6rem;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.police-mod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--police), var(--police-v));
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.police-mod-card:hover { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.35); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(59,130,246,.18); }
.police-mod-card:hover::before { transform: scaleX(1); }

.police-mod-icon { font-size: 2rem; }
.police-mod-name { font-size: .9rem; font-weight: 900; color: #fff; }
.police-mod-desc { font-size: .72rem; color: var(--police-muted); line-height: 1.5; }
.police-mod-meta {
  display: flex; align-items: center; gap: .5rem; margin-top: auto;
  flex-wrap: wrap;
}
.police-mod-pill {
  font-size: .6rem; font-weight: 800; letter-spacing: .05em;
  background: rgba(59,130,246,.15); color: var(--police-l);
  border: 1px solid rgba(59,130,246,.25); border-radius: 4px;
  padding: .1rem .45rem;
}
.police-mod-arrow { margin-left: auto; font-size: .8rem; color: var(--police-dim); }

/* ── POLICE PROGRESS SECTION ── */
.police-progress-section {
  background: rgba(255,255,255,.02); border-top: 1px solid var(--police-border);
  border-bottom: 1px solid var(--police-border);
  padding: 2rem 1.2rem;
}
.police-progress-inner {
  max-width: 1100px; margin: 0 auto;
}
.police-progress-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.police-prog-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 12px; padding: 1.1rem; text-align: center;
}
.police-prog-icon { font-size: 1.4rem; margin-bottom: .3rem; display: block; }
.police-prog-num { font-size: 1.5rem; font-weight: 900; color: var(--police-l); }
.police-prog-lbl { font-size: .65rem; color: var(--police-muted); font-weight: 700; }

/* Streak badge */
.police-streak { color: var(--police-gold) !important; }

/* ── POLICE PAGE LAYOUT (sidebar + content) ── */
.police-page-wrap {
  max-width: 1200px; margin: 0 auto; padding: 1.5rem 1.2rem 3rem;
  display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: start;
}
.police-sidebar {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 14px; padding: 1rem;
  position: sticky; top: 72px;
}
.police-sidebar-title {
  font-size: .65rem; font-weight: 900; color: var(--police-muted);
  letter-spacing: .1em; text-transform: uppercase; padding: .3rem .5rem .6rem;
  border-bottom: 1px solid var(--police-border); margin-bottom: .5rem;
}
.police-sidebar-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .7rem; border-radius: 8px; text-decoration: none;
  color: var(--police-muted); font-size: .78rem; font-weight: 700;
  transition: all .15s; white-space: nowrap;
}
.police-sidebar-link:hover { background: rgba(59,130,246,.1); color: var(--police-l); }
.police-sidebar-link.active { background: rgba(59,130,246,.15); color: var(--police-l); border-left: 2px solid var(--police); }
.police-sidebar-link .sbl-icon { font-size: 1rem; flex-shrink: 0; }
.police-sidebar-badge {
  margin-left: auto; background: rgba(59,130,246,.2); color: var(--police-l);
  border-radius: 4px; font-size: .58rem; font-weight: 900; padding: .08rem .38rem;
}

/* ── POLICE CONTENT AREA ── */
.police-content { min-width: 0; }

.police-page-header {
  margin-bottom: 1.5rem;
}
.police-breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .68rem; color: var(--police-muted); margin-bottom: .6rem;
}
.police-breadcrumb a { color: var(--police-muted); text-decoration: none; }
.police-breadcrumb a:hover { color: var(--police-l); }
.police-breadcrumb-sep { color: var(--police-dim); }
.police-page-title { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: .2rem; }
.police-page-desc { font-size: .8rem; color: var(--police-muted); }

/* ── SYLLABUS ACCORDION ── */
.police-subj-grid {
  display: flex; flex-direction: column; gap: .7rem;
}
.police-subj-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 12px; overflow: hidden;
}
.police-subj-head {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem; cursor: pointer;
  transition: background .15s;
}
.police-subj-head:hover { background: rgba(59,130,246,.06); }
.police-subj-icon { font-size: 1.3rem; flex-shrink: 0; }
.police-subj-info { flex: 1; min-width: 0; }
.police-subj-name { font-size: .9rem; font-weight: 900; color: #fff; }
.police-subj-meta-row {
  display: flex; gap: .6rem; margin-top: .15rem; flex-wrap: wrap;
}
.police-subj-chip {
  font-size: .58rem; font-weight: 800; letter-spacing: .04em;
  background: rgba(255,255,255,.06); color: var(--police-muted);
  border-radius: 4px; padding: .08rem .4rem;
}
.police-subj-marks {
  margin-left: auto; font-size: .72rem; font-weight: 900;
  color: var(--police-gold); flex-shrink: 0;
}
.police-subj-chevron {
  font-size: .8rem; color: var(--police-dim); transition: transform .2s; flex-shrink: 0;
}
.police-subj-card.open .police-subj-chevron { transform: rotate(180deg); }

.police-subj-body {
  display: none; border-top: 1px solid var(--police-border);
  padding: .8rem 1.1rem 1rem;
}
.police-subj-card.open .police-subj-body { display: block; }

.police-topic-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.police-topic-item {
  display: flex; align-items: center; gap: .7rem;
  padding: .5rem .6rem; border-radius: 7px;
  transition: background .15s;
}
.police-topic-item:hover { background: rgba(255,255,255,.04); }
.police-topic-check {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--police-dim); flex-shrink: 0; cursor: pointer;
  appearance: none; -webkit-appearance: none; background: transparent;
  transition: all .15s; position: relative;
}
.police-topic-check:checked { background: var(--police); border-color: var(--police); }
.police-topic-check:checked::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; font-weight: 900;
}
.police-topic-name { font-size: .8rem; color: var(--police-text); flex: 1; }
.police-topic-links {
  display: flex; gap: .4rem;
}
.police-topic-link {
  font-size: .6rem; font-weight: 800; text-decoration: none;
  padding: .1rem .4rem; border-radius: 4px;
  border: 1px solid rgba(59,130,246,.3); color: var(--police-l);
  background: rgba(59,130,246,.08); transition: background .15s;
}
.police-topic-link:hover { background: rgba(59,130,246,.2); }

.police-subj-progress {
  margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid var(--police-border);
}
.police-prog-bar-wrap {
  height: 5px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden;
}
.police-prog-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--police), var(--police-v));
  border-radius: 99px; transition: width .5s ease;
}
.police-prog-bar-lbl {
  font-size: .62rem; color: var(--police-muted); margin-top: .3rem; text-align: right;
}

/* ── MCQ PAGE ── */
.police-mcq-wrap { display: flex; flex-direction: column; gap: 1.2rem; }

.police-subject-pills {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.police-subj-pill {
  background: rgba(255,255,255,.05); border: 1px solid var(--police-border);
  color: var(--police-muted); border-radius: 99px;
  padding: .35rem .9rem; font-size: .7rem; font-weight: 800;
  cursor: pointer; transition: all .18s; font-family: 'Nunito', sans-serif;
}
.police-subj-pill:hover { border-color: rgba(59,130,246,.4); color: var(--police-l); }
.police-subj-pill.active {
  background: linear-gradient(135deg, var(--police), var(--police-v));
  border-color: var(--police); color: #fff;
  box-shadow: 0 2px 10px rgba(59,130,246,.35);
}

.police-mcq-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .6rem;
}
.police-mcq-counter {
  font-size: .75rem; color: var(--police-muted); font-weight: 700;
}
.police-mcq-score {
  font-size: .75rem; font-weight: 900; color: var(--police-l);
}
.police-difficulty-pills {
  display: flex; gap: .4rem;
}
.police-diff-pill {
  font-size: .62rem; font-weight: 800; cursor: pointer;
  padding: .22rem .65rem; border-radius: 99px;
  border: 1px solid var(--police-border); color: var(--police-muted);
  background: transparent; font-family: 'Nunito', sans-serif;
  transition: all .15s;
}
.police-diff-pill.active.easy  { background: rgba(22,163,74,.15);  border-color: rgba(22,163,74,.4);  color: #4ade80; }
.police-diff-pill.active.med   { background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.4); color: #fcd34d; }
.police-diff-pill.active.hard  { background: rgba(239,68,68,.15);  border-color: rgba(239,68,68,.4);  color: #f87171; }

.police-q-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 14px; padding: 1.5rem;
}
.police-q-num {
  font-size: .65rem; font-weight: 900; color: var(--police-muted);
  letter-spacing: .08em; margin-bottom: .8rem;
  display: flex; align-items: center; gap: .5rem;
}
.police-q-diff-tag {
  font-size: .58rem; font-weight: 900; padding: .08rem .38rem; border-radius: 4px;
}
.police-q-diff-tag.easy { background: rgba(22,163,74,.2); color: #4ade80; }
.police-q-diff-tag.med  { background: rgba(245,158,11,.2); color: #fcd34d; }
.police-q-diff-tag.hard { background: rgba(239,68,68,.2);  color: #f87171; }

.police-q-text { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; line-height: 1.6; }

.police-opts { display: flex; flex-direction: column; gap: .55rem; }
.police-opt {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .8rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--police-border); background: rgba(255,255,255,.03);
  cursor: pointer; font-size: .85rem; color: var(--police-text);
  font-family: 'Nunito', sans-serif; font-weight: 600;
  transition: all .15s; text-align: left; width: 100%;
}
.police-opt:hover:not(:disabled) { border-color: rgba(59,130,246,.45); background: rgba(59,130,246,.08); }
.police-opt:disabled { cursor: default; }
.police-opt.correct { border-color: #22c55e !important; background: rgba(22,163,74,.12) !important; color: #4ade80 !important; }
.police-opt.wrong   { border-color: #ef4444 !important; background: rgba(239,68,68,.1)  !important; color: #f87171 !important; }
.police-opt.reveal  { border-color: rgba(59,130,246,.3); background: rgba(59,130,246,.06); }
.police-opt-letter {
  width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
  background: rgba(255,255,255,.06); font-size: .72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: .02rem;
}
.police-opt.correct .police-opt-letter { background: #22c55e; color: #fff; }
.police-opt.wrong   .police-opt-letter { background: #ef4444; color: #fff; }

.police-q-explanation {
  display: none; margin-top: 1rem;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.25);
  border-radius: 8px; padding: .9rem 1rem;
  font-size: .8rem; color: var(--police-text); line-height: 1.7;
}
.police-q-explanation.show { display: block; }
.police-exp-label { font-size: .62rem; font-weight: 900; color: var(--police-l); letter-spacing: .08em; margin-bottom: .3rem; display: block; }

.police-q-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem; flex-wrap: wrap; gap: .6rem;
}
.police-q-nav { display: flex; gap: .6rem; }
.police-btn-sm {
  padding: .5rem 1.1rem; border-radius: 8px; font-size: .78rem; font-weight: 800;
  cursor: pointer; font-family: 'Nunito', sans-serif; border: none;
  transition: all .15s;
}
.police-btn-sm.primary { background: linear-gradient(135deg, var(--police), var(--police-v)); color: #fff; box-shadow: 0 2px 10px rgba(59,130,246,.35); }
.police-btn-sm.primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.police-btn-sm.outline { background: transparent; color: var(--police-muted); border: 1.5px solid var(--police-border); }
.police-btn-sm.outline:hover { border-color: rgba(59,130,246,.4); color: var(--police-l); }
.police-btn-sm.ghost { background: rgba(255,255,255,.05); color: var(--police-muted); }
.police-btn-sm.ghost:hover { background: rgba(255,255,255,.09); color: var(--police-text); }

.police-bookmark-btn {
  background: transparent; border: 1.5px solid var(--police-border);
  color: var(--police-muted); border-radius: 8px; padding: .5rem .7rem;
  cursor: pointer; font-family: 'Nunito', sans-serif; font-size: .85rem;
  transition: all .15s;
}
.police-bookmark-btn:hover, .police-bookmark-btn.saved { border-color: var(--police-gold); color: var(--police-gold); background: rgba(245,158,11,.08); }

/* ── QUIZ PAGE ── */
.police-quiz-hero {
  background: linear-gradient(135deg, #030712, #0a1628);
  padding: 2.5rem 1.2rem 2rem; text-align: center;
  border-bottom: 1px solid var(--police-border);
}
.police-quiz-hero-title { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: .3rem; }
.police-quiz-hero-sub { font-size: .8rem; color: var(--police-muted); }

.police-quiz-wrap {
  max-width: 760px; margin: 2rem auto; padding: 0 1.2rem 3rem;
}

/* Start Screen */
.police-start-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 16px; padding: 2rem; text-align: center;
}
.police-start-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.police-start-title { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: .5rem; }
.police-start-meta {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin: 1.2rem 0; font-size: .78rem; color: var(--police-muted);
}
.police-start-meta span { display: flex; align-items: center; gap: .3rem; font-weight: 700; }
.police-start-rules {
  text-align: left; background: rgba(255,255,255,.03); border: 1px solid var(--police-border);
  border-radius: 10px; padding: .9rem 1.1rem; margin: 1.2rem 0;
  font-size: .78rem; color: var(--police-muted); line-height: 1.9;
}

/* Quiz Active */
.police-quiz-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; flex-wrap: wrap; gap: .6rem;
}
.police-quiz-prog-bar {
  width: 100%; height: 4px; background: rgba(255,255,255,.08);
  border-radius: 99px; margin-bottom: 1.2rem; overflow: hidden;
}
.police-quiz-prog-fill {
  height: 100%; background: linear-gradient(90deg, var(--police), var(--police-v));
  border-radius: 99px; transition: width .4s ease;
}

.police-timer {
  display: flex; align-items: center; gap: .45rem;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  border-radius: 8px; padding: .38rem .8rem;
  font-size: .82rem; font-weight: 900; color: #f87171;
}
.police-timer.warning { background: rgba(239,68,68,.2); border-color: rgba(239,68,68,.5); animation: policeTimerWarn .6s ease-in-out infinite; }
@keyframes policeTimerWarn { 0%,100%{opacity:1} 50%{opacity:.65} }

/* Result Screen */
.police-result-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 16px; padding: 2rem; text-align: center;
}
.police-result-score-ring {
  width: 110px; height: 110px; border-radius: 50%;
  background: conic-gradient(var(--police) calc(var(--pct) * 1%), rgba(255,255,255,.06) 0%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.police-result-score-inner {
  width: 88px; height: 88px; border-radius: 50%;
  background: #0a1628; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.police-result-pct { font-size: 1.4rem; font-weight: 900; color: var(--police-l); }
.police-result-pct-lbl { font-size: .6rem; color: var(--police-muted); font-weight: 700; }
.police-result-title { font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: .8rem; }
.police-result-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin: 1.2rem 0;
}
.police-result-stat {
  background: rgba(255,255,255,.04); border: 1px solid var(--police-border);
  border-radius: 10px; padding: .8rem; text-align: center;
}
.police-result-stat-num { font-size: 1.2rem; font-weight: 900; color: #fff; }
.police-result-stat-lbl { font-size: .62rem; color: var(--police-muted); font-weight: 700; }
.police-result-correct .police-result-stat-num { color: #4ade80; }
.police-result-wrong   .police-result-stat-num { color: #f87171; }
.police-result-skip    .police-result-stat-num { color: #fcd34d; }

.police-result-share-row {
  display: flex; gap: .7rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap;
}

/* ── MOCK TEST LIST ── */
.police-mock-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
.police-mock-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 12px; padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem;
}
.police-mock-type {
  font-size: .6rem; font-weight: 900; letter-spacing: .08em;
  padding: .1rem .5rem; border-radius: 4px;
  background: rgba(59,130,246,.15); color: var(--police-l);
  width: fit-content;
}
.police-mock-name { font-size: .95rem; font-weight: 900; color: #fff; }
.police-mock-meta-row {
  display: flex; gap: 1rem; font-size: .72rem; color: var(--police-muted); font-weight: 700;
}
.police-mock-meta-row span { display: flex; align-items: center; gap: .3rem; }
.police-mock-attempts {
  font-size: .65rem; color: var(--police-muted);
  padding-top: .6rem; border-top: 1px solid var(--police-border);
}
.police-mock-bar-wrap { height: 4px; background: rgba(255,255,255,.07); border-radius: 99px; margin-top: .3rem; }
.police-mock-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--police), var(--police-v)); }

/* ── PAPERS PAGE ── */
.police-year-tabs {
  display: flex; gap: .5rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.police-year-tab {
  background: rgba(255,255,255,.05); border: 1px solid var(--police-border);
  color: var(--police-muted); border-radius: 8px; padding: .4rem .9rem;
  font-size: .75rem; font-weight: 800; cursor: pointer;
  font-family: 'Nunito', sans-serif; transition: all .15s;
}
.police-year-tab.active {
  background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.4); color: var(--police-l);
}
.police-papers-list { display: flex; flex-direction: column; gap: .8rem; }
.police-paper-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 12px; padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.police-paper-icon { font-size: 1.8rem; flex-shrink: 0; }
.police-paper-info { flex: 1; min-width: 200px; }
.police-paper-name { font-size: .9rem; font-weight: 900; color: #fff; margin-bottom: .2rem; }
.police-paper-meta { font-size: .7rem; color: var(--police-muted); font-weight: 600; }
.police-paper-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.police-paper-btn {
  font-size: .72rem; font-weight: 800; text-decoration: none;
  padding: .4rem .9rem; border-radius: 7px; cursor: pointer;
  font-family: 'Nunito', sans-serif; border: none; transition: all .15s;
  display: inline-flex; align-items: center; gap: .3rem;
}
.police-paper-btn.pdf { background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.police-paper-btn.pdf:hover { background: rgba(239,68,68,.25); }
.police-paper-btn.online { background: rgba(59,130,246,.15); color: var(--police-l); border: 1px solid rgba(59,130,246,.3); }
.police-paper-btn.online:hover { background: rgba(59,130,246,.25); }
.police-paper-btn.key { background: rgba(22,163,74,.12); color: #4ade80; border: 1px solid rgba(22,163,74,.3); }
.police-paper-btn.key:hover { background: rgba(22,163,74,.22); }

/* ── POLICE FOOTER ── */
.police-footer {
  background: #030712; border-top: 1px solid var(--police-border);
  padding: 1.5rem 1.2rem; text-align: center;
  font-size: .72rem; color: var(--police-muted);
}
.police-footer a { color: var(--police-muted); text-decoration: none; margin: 0 .5rem; }
.police-footer a:hover { color: var(--police-l); }
.police-footer-brand { font-weight: 900; color: var(--police-l); font-size: .8rem; margin-bottom: .3rem; }

/* ── INFO CARDS (Exam Pattern, Eligibility etc.) ── */
.police-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.police-info-card {
  background: var(--police-card); border: 1px solid var(--police-border);
  border-radius: 12px; padding: 1.2rem;
}
.police-info-card-title {
  font-size: .78rem; font-weight: 900; color: var(--police-l);
  margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem;
}
.police-cutoff-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.police-cutoff-table th, .police-cutoff-table td {
  padding: .6rem .8rem; text-align: center; border-bottom: 1px solid var(--police-border);
}
.police-cutoff-table th { color: var(--police-muted); font-size: .68rem; font-weight: 800; letter-spacing: .05em; background: rgba(255,255,255,.03); }
.police-cutoff-table td { color: var(--police-text); }
.police-cutoff-table tr:last-child td { border-bottom: none; }
.police-cutoff-gen { color: var(--police-l) !important; font-weight: 900 !important; }
.police-cutoff-obc { color: #34d399 !important; font-weight: 900 !important; }
.police-cutoff-sc  { color: #fcd34d !important; font-weight: 900 !important; }
.police-cutoff-st  { color: #f87171 !important; font-weight: 900 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .police-page-wrap { grid-template-columns: 1fr; }
  .police-sidebar { position: static; }
  .police-sidebar-link { display: inline-flex; }
  .police-sidebar { display: flex; flex-wrap: wrap; gap: .3rem; padding: .6rem; border-radius: 10px; margin-bottom: .5rem; }
  .police-sidebar-title { display: none; }
  .police-modules-grid { grid-template-columns: repeat(2,1fr); }
  .police-progress-grid { grid-template-columns: repeat(2,1fr); }
  .police-info-grid { grid-template-columns: 1fr; }
  .police-mock-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .police-hero { padding: 2.2rem 1rem 1.8rem; }
  .police-stats-inner { grid-template-columns: repeat(2,1fr); }
  .police-modules-grid { grid-template-columns: 1fr 1fr; }
  .police-progress-grid { grid-template-columns: 1fr 1fr; }
  .police-countdown { gap: .8rem; }
  .police-cd-box { min-width: 60px; padding: .5rem .7rem; }
  .police-cd-num { font-size: 1.3rem; }
  .police-result-grid { grid-template-columns: 1fr 1fr 1fr; }
  .police-paper-card { flex-direction: column; }
}
@media (max-width: 420px) {
  .police-modules-grid { grid-template-columns: 1fr; }
}
