.elementor-7025 .elementor-element.elementor-element-41ff840{--display:flex;}/* Start custom CSS for html, class: .elementor-element-895f13c */@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

  :root {
    --ink: #0d0d0d;
    --paper: #f5f0e8;
    --accent: #e63329;
    --gold: #d4a017;
    --steel: #2a3d55;
    --mist: #e8e3d8;
    --correct: #1a7a4a;
    --wrong: #c0392b;
    --correct-bg: #eafaf1;
    --wrong-bg: #fdf0ef;
  }

  .ssc-quiz-wrap * { box-sizing: border-box; margin: 0; padding: 0; }

  .ssc-quiz-wrap {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px 60px;
  }

  /* ── HERO ── */
  .quiz-hero {
    background: var(--steel);
    color: #fff;
    padding: 48px 40px 40px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
  }
  .quiz-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(212,160,23,0.12);
  }
  .quiz-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(230,51,41,0.10);
  }
  .quiz-hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 18px;
  }
  .quiz-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
  }
  .quiz-hero h1 span { color: var(--gold); }
  .quiz-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* exam stats bar */
  .quiz-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 40px;
    background: var(--ink);
    margin-bottom: 40px;
  }
  .stat-item { display: flex; align-items: center; gap: 10px; }
  .stat-icon { font-size: 18px; }
  .stat-label { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
  .stat-val { font-size: 14px; font-weight: 600; color: #fff; }

  /* ── SECTION INTRO ── */
  .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    margin-bottom: 4px;
    border-left: 5px solid var(--accent);
    background: var(--mist);
  }
  .section-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
  }
  .section-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1.5px;
    color: var(--steel);
    line-height: 1;
  }
  .section-info p { font-size: 13px; color: #666; margin-top: 4px; }
  .section-badge {
    margin-left: auto;
    background: var(--steel);
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    padding: 6px 14px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* ── QUESTION CARD ── */
  .q-card {
    background: #fff;
    border: 1.5px solid #e0dbd0;
    padding: 28px 28px 22px;
    margin-bottom: 2px;
    transition: border-color 0.2s;
  }
  .q-card:hover { border-color: #c8c0b0; }

  .q-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .q-num {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    background: var(--steel);
    padding: 3px 10px;
    letter-spacing: 1px;
  }
  .q-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .q-difficulty {
    margin-left: auto;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
  }
  .q-difficulty.easy { color: var(--correct); }
  .q-difficulty.medium { color: var(--gold); }
  .q-difficulty.hard { color: var(--accent); }

  .q-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Options */
  .options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  @media (max-width: 560px) { .options-grid { grid-template-columns: 1fr; } }

  .opt-btn {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: var(--mist);
    border: 1.5px solid transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    text-align: left;
    transition: all 0.18s;
    line-height: 1.4;
  }
  .opt-btn:hover:not(:disabled) {
    background: #ede8dc;
    border-color: var(--steel);
  }
  .opt-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--steel);
    min-width: 20px;
    padding-top: 1px;
  }

  /* Result states */
  .opt-btn.correct {
    background: var(--correct-bg);
    border-color: var(--correct);
  }
  .opt-btn.correct .opt-label { color: var(--correct); }
  .opt-btn.wrong {
    background: var(--wrong-bg);
    border-color: var(--wrong);
  }
  .opt-btn.wrong .opt-label { color: var(--wrong); }

  /* Explanation */
  .explanation {
    display: none;
    margin-top: 14px;
    padding: 14px 18px;
    background: #f8f6f0;
    border-left: 4px solid var(--gold);
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
    animation: slideDown 0.25s ease;
  }
  .explanation.visible { display: block; }
  .explanation strong { color: var(--steel); }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .q-result-icon {
    display: none;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .q-result-icon.show { display: flex; align-items: center; gap: 6px; }
  .q-result-icon.correct-icon { color: var(--correct); }
  .q-result-icon.wrong-icon { color: var(--wrong); }

  /* Section spacer */
  .section-spacer { height: 48px; }

  /* ── SCORE PANEL ── */
  .score-panel {
    background: var(--steel);
    padding: 48px 40px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
  }
  .score-panel::before {
    content: 'RESULT';
    position: absolute;
    top: -10px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(255,255,255,0.04);
    letter-spacing: 4px;
    pointer-events: none;
  }
  .score-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .score-panel p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 32px; }

  .score-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 12vw, 110px);
    line-height: 1;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
  }
  .score-label { font-size: 14px; color: rgba(255,255,255,0.5); font-family: 'DM Mono', monospace; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 36px; }

  .score-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
  }
  .breakdown-card {
    background: rgba(255,255,255,0.07);
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
  }
  .breakdown-card h3 {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  .breakdown-card .bd-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
  }
  .breakdown-card .bd-total { font-size: 12px; color: rgba(255,255,255,0.4); }

  .rank-badge {
    display: inline-block;
    padding: 16px 28px;
    background: var(--accent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 28px;
  }

  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-retake, .btn-review {
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
  }
  .btn-retake { background: var(--gold); color: var(--ink); }
  .btn-review { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
  .btn-retake:hover, .btn-review:hover { opacity: 0.85; }

  /* Submit button */
  .submit-wrap { padding: 40px 0 0; text-align: center; }
  .btn-submit {
    background: var(--accent);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    padding: 18px 60px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-submit:hover { background: #c0271e; }
  .btn-submit:active { transform: scale(0.98); }

  /* Progress bar */
  .progress-wrap { margin-bottom: 36px; }
  .progress-label { font-family: 'DM Mono', monospace; font-size: 11px; color: #888; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: flex; justify-content: space-between; }
  .progress-track { height: 4px; background: #ddd; width: 100%; }
  .progress-fill { height: 4px; background: var(--accent); width: 0%; transition: width 0.3s ease; }

  /* Tip boxes */
  .tip-box {
    background: var(--steel);
    color: #fff;
    padding: 20px 24px;
    margin: 36px 0 4px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .tip-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .tip-content h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
  .tip-content p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

  /* Info section */
  .info-section {
    padding: 36px 0 0;
  }
  .info-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--steel);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
  }
  .info-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
  .info-table th { background: var(--steel); color: #fff; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; }
  .info-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid #e0dbd0; }
  .info-table tr:nth-child(even) td { background: var(--mist); }/* End custom CSS */