@import url("typography.css?v=20260702-plus-jakarta-sans");

:root {
    --mock-navy: #071547;
    --mock-blue: #0b5fff;
    --mock-violet: #5b3fd6;
    --mock-red: #d91532;
    --mock-text: #0f172a;
    --mock-muted: #64748b;
    --mock-border: #dbe3ef;
    --mock-panel: #ffffff;
    --mock-soft: #f5f8ff;
    --mock-shadow: 0 20px 48px rgba(7, 21, 71, 0.08);
}

body.mock-player-page,
body.public-page[data-practice-skill="mock"],
body.mock-result-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    color: var(--mock-text);
    background:
        linear-gradient(135deg, rgba(11, 95, 255, 0.09), rgba(91, 63, 214, 0.07) 42%, rgba(255, 255, 255, 0) 72%),
        #f8fbff;
}

body.mock-player-page.mock-intro-active {
    background: linear-gradient(135deg, #eef4ff 0%, #f6f3ff 45%, #ffffff 100%);
}

body.mock-player-page * ,
body.public-page[data-practice-skill="mock"] *,
body.mock-result-page * {
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.mock-list-shell {
    padding-bottom: 88px;
}

.mock-list-shell .mock-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 620px));
    justify-content: center;
    gap: 18px;
    padding: 22px 0 64px;
}

@media (max-width: 900px) {
    .mock-list-shell .mock-list-grid {
        grid-template-columns: minmax(0, 620px);
    }
}

.mock-test-card {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 620px;
    min-height: 408px;
    padding: 30px;
    border: 1px solid #e2ebff;
    border-radius: 26px;
    background: #ffffff;
    color: var(--mock-text);
    box-shadow:
        0 24px 60px rgba(36, 84, 244, 0.10),
        0 8px 24px rgba(74, 106, 255, 0.06);
    font-family: "Plus Jakarta Sans", sans-serif !important;
    gap: 22px;
}

body.dark-theme .mock-test-card {
    border: 1px solid rgba(148, 163, 184, 0.20);
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 11, 31, 0.94)),
        linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(99, 102, 241, 0.12));
    color: #f8fbff;
    box-shadow:
        0 26px 68px rgba(0, 0, 0, 0.44),
        0 14px 34px rgba(37, 99, 235, 0.12);
}

.mock-test-card::after {
    display: none;
}

.mock-test-card:hover {
    transform: translateY(-2px);
    border-color: #d5e2ff;
    box-shadow:
        0 26px 64px rgba(11, 95, 255, 0.13),
        0 12px 32px rgba(91, 63, 214, 0.08);
}

.mock-test-card .test-card-top {
    position: relative;
    align-items: flex-start;
    min-height: 60px;
    margin-bottom: 0;
}

.mock-card-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 160px;
    min-height: 60px;
}

.mock-card-dots {
    position: absolute;
    left: 45px;
    top: 12px;
    z-index: 0;
    width: 122px;
    height: 50px;
    background-image: radial-gradient(circle, rgba(69, 119, 255, 0.20) 2px, transparent 2.3px);
    background-size: 14px 14px;
    opacity: 0.75;
    -webkit-mask-image: linear-gradient(90deg, #000 20%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 20%, transparent 100%);
}

.mock-test-card .test-card-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: linear-gradient(135deg, #1748df 0%, #254ff1 48%, #6840dd 100%);
    box-shadow: 0 15px 30px rgba(49, 76, 224, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mock-test-card:hover .test-card-icon {
    transform: none;
    background: linear-gradient(135deg, #1748df 0%, #254ff1 48%, #6840dd 100%);
    box-shadow: 0 15px 30px rgba(49, 76, 224, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mock-test-card .test-card-icon svg {
    width: 32px;
    height: 32px;
}

.mock-test-card .test-card-content {
    flex: 0;
    gap: 0;
}

.mock-test-card .test-card-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    color: var(--mock-navy);
    font-size: 34px;
    font-weight: 800 !important;
    letter-spacing: 0;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.mock-test-card .test-card-content p {
    display: none;
}

.mock-card-details {
    display: grid;
    width: 100%;
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.mock-detail-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 0;
}

.mock-detail-row + .mock-detail-row {
    border-top: 1px solid #e8eef9;
}

.mock-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #eef4ff;
    color: #1766ef;
}

.mock-detail-icon svg {
    width: 23px;
    height: 23px;
}

.mock-detail-text {
    min-width: 0;
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.mock-access-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcfce7, #eefce9);
    font-family: "Plus Jakarta Sans", sans-serif !important;
    color: #078638;
    font-size: 14px;
    font-weight: 800 !important;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mock-access-pill.free {
    background: linear-gradient(135deg, #dcfce7, #eefce9);
    color: #078638;
}

.mock-access-pill.premium {
    background: linear-gradient(135deg, #eaf1ff, #dfe9ff);
    color: #2457f5;
}

.mock-test-card .test-card-button {
    min-height: 58px;
    margin-top: auto;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #1782ff 0%, #075df4 52%, #1647e8 100%);
    font-family: "Plus Jakarta Sans", sans-serif !important;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800 !important;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(11, 95, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.mock-test-card .test-card-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06) saturate(1.05);
    box-shadow: 0 20px 38px rgba(11, 95, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.mock-test-card .test-card-button:active {
    transform: translateY(0) scale(0.985);
}

.mock-test-card .test-card-button:focus-visible {
    outline: 3px solid rgba(36, 84, 244, 0.32);
    outline-offset: 4px;
}

.test-card-button-arrow {
    width: 24px;
    height: 24px;
    transition: transform 180ms ease;
}

.mock-test-card .test-card-button:hover .test-card-button-arrow {
    transform: translateX(4px);
}

body.dark-theme .mock-test-card:hover {
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow:
        0 30px 76px rgba(0, 0, 0, 0.48),
        0 18px 40px rgba(37, 99, 235, 0.18);
}

body.dark-theme .mock-test-card .test-card-icon {
    border: 1px solid rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(99, 102, 241, 0.22));
    color: #60a5fa;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16);
}

body.dark-theme .mock-test-card:hover .test-card-icon {
    border-color: rgba(125, 211, 252, 0.38);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.28);
}

body.dark-theme .mock-test-card .test-card-content h2 {
    color: #f8fbff;
}

body.dark-theme .mock-card-lines {
    color: #b7c4df;
}

body.dark-theme .mock-detail-row + .mock-detail-row {
    border-top-color: rgba(148, 163, 184, 0.18);
}

body.dark-theme .mock-detail-icon {
    background: rgba(37, 99, 235, 0.16);
    color: #7db4ff;
}

body.dark-theme .mock-detail-text {
    color: #d6e0f2;
}

body.dark-theme .mock-card-lines span::before {
    background: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

html.dark-theme .mock-access-pill.free,
body.dark-theme .mock-access-pill.free,
html[data-theme="dark"] .mock-access-pill.free,
body[data-theme="dark"] .mock-access-pill.free {
    border: 1px solid #145c43 !important;
    background: #062b25 !important;
    color: #72e6a0 !important;
    box-shadow: inset 0 0 0 1px rgba(114, 230, 160, 0.03);
}

html.dark-theme .mock-access-pill.premium,
body.dark-theme .mock-access-pill.premium,
html[data-theme="dark"] .mock-access-pill.premium,
body[data-theme="dark"] .mock-access-pill.premium {
    border: 1px solid #284ea8 !important;
    background: #111d44 !important;
    color: #93b4ff !important;
    box-shadow: inset 0 0 0 1px rgba(147, 180, 255, 0.04);
}

body.dark-theme .mock-test-card .test-card-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

body.dark-theme .mock-test-card:hover .test-card-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.mock-player-shell {
    min-height: 100vh;
}

.mock-player-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--mock-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
}

.mock-player-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mock-player-brand span {
    color: var(--mock-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-player-brand strong {
    overflow: hidden;
    color: var(--mock-text);
    font-size: 18px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-player-timer {
    min-width: 170px;
    padding: 10px 16px;
    border: 1px solid var(--mock-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 24px rgba(7, 21, 71, 0.06);
}

.mock-player-timer span {
    display: block;
    color: var(--mock-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-player-timer strong {
    display: block;
    margin-top: 2px;
    font-size: 24px;
    font-weight: 900;
}

.mock-player-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.mock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    background: var(--mock-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.mock-btn:hover {
    transform: translateY(-1px);
    background: var(--mock-blue);
    box-shadow: 0 10px 24px rgba(11, 95, 255, 0.16);
}

.mock-btn.secondary {
    border: 1px solid var(--mock-border);
    background: #ffffff;
    color: var(--mock-text);
}

.mock-btn.secondary:hover {
    background: var(--mock-soft);
    box-shadow: none;
}

.mock-intro-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    min-height: 72px;
    padding: 0 40px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.58);
    border-radius: 0 0 16px 16px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.mock-intro-brand {
    display: flex;
    align-items: center;
    justify-self: start;
    min-width: 0;
}

.mock-intro-brand img {
    display: block;
    width: auto;
    height: 44px;
    object-fit: contain;
}

.mock-intro-candidate {
    justify-self: center;
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.mock-intro-taker-id {
    justify-self: end;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.mock-intro-wrap {
    display: grid;
    min-height: calc(100vh - 72px);
    place-items: center;
    padding: 34px 28px 52px;
    background:
        radial-gradient(circle at 16% 12%, rgba(11, 95, 255, 0.14), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(91, 63, 214, 0.12), transparent 30%),
        linear-gradient(135deg, #eef4ff 0%, #f6f3ff 45%, #ffffff 100%);
}

.mock-intro-card {
    width: min(1180px, 100%);
    padding: 52px 56px 48px;
    border: 1px solid #dbe4f0;
    border-radius: 28px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.mock-intro-section {
    display: grid;
    gap: 10px;
}

.mock-intro-section h1,
.mock-intro-section h2,
.mock-intro-section p,
.mock-intro-section ul,
.mock-intro-section ol {
    margin: 0;
}

.mock-intro-section h1 {
    color: #0f172a;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.16;
}

.mock-intro-section h2 {
    margin-top: 4px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.mock-intro-time {
    color: #334155;
    font-size: 17px;
    font-weight: 800;
}

.mock-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    margin-top: 34px;
}

.mock-intro-sections {
    margin-top: 34px;
}

.mock-intro-section-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.mock-intro-section-card {
    display: grid;
    gap: 20px;
    min-height: 142px;
    padding: 22px 24px;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.98)),
        #ffffff;
}

.mock-intro-section-card span,
.mock-intro-section-card strong,
.mock-intro-section-card p {
    margin: 0;
}

.mock-intro-section-card span {
    color: #0b5fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.mock-intro-section-card strong {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.mock-intro-section-card p {
    align-self: end;
    color: #475569;
    font-size: 15px;
    font-weight: 800;
}

.mock-intro-section ul,
.mock-intro-section ol {
    display: grid;
    gap: 10px;
    padding-left: 22px;
    color: #334155;
    font-size: 16px;
    line-height: 1.65;
}

.mock-intro-section > p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.mock-intro-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 0;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
}

.mock-intro-warning span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #f59e0b;
    border-radius: 50%;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 900;
}

.mock-intro-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.mock-intro-primary,
.mock-intro-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 26px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.mock-intro-primary {
    border: 0;
    background: linear-gradient(135deg, #0b5fff, #5b3fd6);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(11, 95, 255, 0.24);
}

.mock-intro-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(91, 63, 214, 0.26);
}

.mock-intro-primary:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.mock-intro-secondary {
    border: 1px solid #bfdbfe;
    background: #ffffff;
    color: #0f172a;
}

.mock-intro-secondary:hover {
    background: #eff6ff;
    color: #0b5fff;
}

.mock-start-wrap {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto;
    padding: 82px 0;
}

.mock-start-panel,
.mock-section-done,
.mock-result-panel {
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 20px;
    background: var(--mock-panel);
    box-shadow: var(--mock-shadow);
}

.mock-start-panel {
    display: grid;
    gap: 24px;
    padding: 34px;
}

.mock-start-panel h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
}

.mock-start-panel p {
    margin: 0;
    color: var(--mock-muted);
    font-size: 16px;
    line-height: 1.6;
}

.mock-section-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.mock-section-chip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 96px;
    padding: 16px;
    border: 1px solid var(--mock-border);
    border-radius: 14px;
    background: #f8fbff;
}

.mock-section-chip span {
    color: var(--mock-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mock-section-chip strong {
    font-size: 17px;
}

.mock-progress-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--mock-border);
    background: #ffffff;
    overflow-x: auto;
}

.mock-progress-tabs span {
    flex: 1 0 140px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--mock-muted);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.mock-progress-tabs span.active {
    background: linear-gradient(135deg, var(--mock-blue), var(--mock-violet));
    color: #ffffff;
}

.mock-progress-tabs span.done {
    background: #dcfce7;
    color: #166534;
}

.mock-player-main {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 18px;
    width: min(1320px, calc(100% - 36px));
    margin: 18px auto 28px;
}

.mock-pane {
    min-height: 620px;
    max-height: calc(100vh - 190px);
    overflow: auto;
    border: 1px solid var(--mock-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 21, 71, 0.06);
}

.mock-pane-inner {
    padding: 24px;
}

.mock-pane h2,
.mock-pane h3 {
    margin: 0 0 12px;
}

.mock-pane p {
    color: var(--mock-muted);
    line-height: 1.65;
}

.mock-question-list {
    display: grid;
    gap: 16px;
}

.mock-question {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--mock-border);
    border-radius: 14px;
    background: #fbfdff;
}

.mock-question label,
.mock-field label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    color: var(--mock-text);
}

.mock-question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--mock-navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.mock-input,
.mock-textarea,
.mock-select {
    width: 100%;
    border: 1px solid var(--mock-border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--mock-text);
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.mock-input,
.mock-select {
    min-height: 42px;
    padding: 0 12px;
}

.mock-textarea {
    min-height: 140px;
    padding: 12px;
    resize: vertical;
    line-height: 1.55;
}

.mock-option-list {
    display: grid;
    gap: 8px;
}

.mock-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--mock-border);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.mock-media {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border: 1px solid var(--mock-border);
    border-radius: 14px;
    background: #f8fafc;
}

.mock-section-done {
    width: min(720px, calc(100% - 40px));
    margin: 72px auto;
    padding: 34px;
    text-align: center;
}

.mock-section-done h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.mock-start-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mock-flow-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--mock-border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
}

.mock-progress-tabs--flow {
    position: sticky;
    top: 69px;
    z-index: 40;
}

.mock-player-frame-shell {
    position: relative;
    min-height: 100vh;
    background: #eef4ff;
}

.mock-player-frame {
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    border: 0;
    background: #ffffff;
}

.mock-listening-audio-internal {
    position: fixed;
    left: -10000px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.mock-audio-blocked-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.62);
}

.mock-audio-blocked-modal.hidden {
    display: none;
}

.mock-audio-blocked-dialog {
    width: min(440px, 100%);
    border-radius: 14px;
    background: #fff;
    padding: 28px;
    color: #0f172a;
    text-align: center;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
}

.mock-audio-blocked-dialog h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.mock-audio-blocked-dialog p {
    margin: 0 0 20px;
    line-height: 1.55;
}

.mock-prep-panel {
    width: min(620px, 100%);
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--mock-shadow);
}

.mock-prep-panel > span {
    color: var(--mock-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-prep-panel h1 {
    margin: 0;
    color: var(--mock-text);
    font-size: 30px;
    line-height: 1.12;
}

.mock-prep-panel p {
    margin: 0;
    color: var(--mock-muted);
    font-size: 16px;
    line-height: 1.6;
}

.mock-prep-wrap {
    display: grid;
    min-height: calc(100vh - 128px);
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(11, 95, 255, 0.08), rgba(217, 21, 50, 0.05)),
        #f8fbff;
}

.mock-prep-panel {
    display: grid;
    gap: 18px;
    padding: 34px;
    text-align: center;
}

.mock-prep-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    border: 1px solid rgba(11, 95, 255, 0.18);
    border-radius: 16px;
    background: #f5f8ff;
    color: var(--mock-navy);
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0;
}

.mock-prep-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.mock-prep-actions .mock-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.mock-result-shell {
    display: grid;
    width: min(1320px, calc(100% - 44px));
    min-height: calc(100vh - 98px);
    margin: 0 auto;
    padding: 42px 0 72px;
}

.mock-result-panel {
    align-self: start;
    width: 100%;
    padding: 54px 58px;
    border: 1px solid #dbe7f6;
    border-radius: 24px;
    background:
        radial-gradient(circle at 76% 10%, rgba(11, 95, 255, 0.08), transparent 22%),
        #ffffff;
    box-shadow:
        0 28px 70px rgba(7, 21, 71, 0.09),
        0 12px 30px rgba(11, 95, 255, 0.05);
}

.mock-result-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 48px;
}

.mock-result-main {
    min-width: 0;
}

.mock-result-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 21px;
    border: 1px solid #bcd3ff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #0b5fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mock-result-panel h1 {
    margin: 25px 0 30px;
    color: var(--mock-navy);
    font-size: 58px;
    font-weight: 900 !important;
    line-height: 1.04;
    letter-spacing: 0;
}

.mock-candidate-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 830px;
    min-height: 92px;
    border: 1px solid #cbd9ea;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 10px 28px rgba(7, 21, 71, 0.035);
    overflow: hidden;
}

.mock-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 18px 22px;
}

.mock-info-item:not(:last-child)::after {
    position: absolute;
    top: 23px;
    right: 0;
    bottom: 23px;
    width: 1px;
    background: #d8e1ef;
    content: "";
}

.mock-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef5ff, #e9efff);
    color: #0b5fff;
}

.mock-info-icon {
    width: 52px;
    height: 52px;
}

.mock-info-icon svg,
.mock-result-button svg {
    width: 23px;
    height: 23px;
}

.mock-info-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mock-info-copy span {
    color: #52627a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
}

.mock-info-copy strong {
    min-width: 0;
    color: var(--mock-navy);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.overall-band-card {
    position: relative;
    min-width: 300px;
    min-height: 210px;
    padding: 36px 42px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #6d28d9 100%);
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
    overflow: hidden;
}

.overall-band-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
}

.overall-band-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.overall-band-card * {
    position: relative;
    z-index: 2;
}

.mock-overall-label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-align: center;
}

.mock-overall-score {
    display: block;
    margin-top: 18px;
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.mock-overall-caption {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
}

.mock-result-divider {
    width: 100%;
    height: 1px;
    margin: 34px 0;
    background: #d8e1ef;
}

.band-score-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.band-score-card {
    height: 128px;
    padding: 24px 26px;
    border: 1px solid #d6e4ff;
    border-radius: 22px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.band-score-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #145cff;
    flex-shrink: 0;
}

.band-score-icon svg {
    width: 28px;
    height: 28px;
}

.band-score-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
}

.band-score-label {
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #42526f;
    margin: 0 0 8px;
}

.band-score-value {
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    color: #071638;
    margin: 0;
}

.band-score-card::before,
.band-score-card::after,
.band-score-card .dots,
.band-score-card .divider,
.band-score-card .dashed-line,
.band-score-card .card-line {
    display: none !important;
    content: none !important;
}

.mock-result-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.mock-result-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.mock-result-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mock-result-button--secondary {
    border: 1px solid #acc4ff;
    background: #ffffff;
    color: var(--mock-navy);
}

.mock-result-button--secondary:hover {
    border-color: #7aa5ff;
    background: #f4f8ff;
    color: #0b5fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(11, 95, 255, 0.09);
}

.mock-result-button--primary {
    border: 0;
    background: linear-gradient(135deg, #0b5fff, #5b3fd6);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(11, 95, 255, 0.24);
}

.mock-result-button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(91, 63, 214, 0.28);
}

.mock-result-button:disabled,
.mock-result-button.is-loading {
    cursor: wait;
    opacity: 0.74;
    transform: none;
}

.mock-result-button:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.95),
        0 0 0 6px rgba(11, 95, 255, 0.34);
}

.mock-result-pdf-mount {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 794px;
    min-height: 1123px;
    overflow: visible;
    background: #ffffff;
    color: #0f172a;
    pointer-events: none;
}

.mock-result-pdf-certificate,
.mock-result-pdf-certificate * {
    box-sizing: border-box;
    color-adjust: exact;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

.mock-result-pdf-certificate {
    width: 794px;
    min-height: 1123px;
    padding: 48px 52px 42px;
    background:
        radial-gradient(circle at 82% 12%, rgba(11, 95, 255, 0.10), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #0f172a;
    font-family: "Plus Jakarta Sans", Arial, sans-serif !important;
}

.mock-pdf-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 3px solid #0b5fff;
}

.mock-pdf-brand {
    display: inline-flex;
    align-items: center;
    width: 190px;
    min-width: 190px;
}

.mock-pdf-brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mock-pdf-title {
    display: grid;
    gap: 8px;
    min-width: 0;
    text-align: right;
}

.mock-pdf-title span,
.mock-pdf-section-label {
    color: #0b5fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-pdf-title h2 {
    margin: 0;
    color: #06164a;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.16;
}

.mock-pdf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: stretch;
    gap: 26px;
    margin-top: 32px;
}

.mock-pdf-hero h1 {
    margin: 15px 0 12px;
    color: #06164a;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.08;
}

.mock-pdf-hero p {
    max-width: 420px;
    margin: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.mock-pdf-overall {
    display: grid;
    align-content: center;
    min-height: 170px;
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #6d28d9 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.mock-pdf-overall span,
.mock-pdf-overall strong,
.mock-pdf-overall small {
    color: #ffffff;
}

.mock-pdf-overall span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-pdf-overall strong {
    margin-top: 12px;
    font-size: 70px;
    font-weight: 900;
    line-height: 0.96;
}

.mock-pdf-overall small {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
}

.mock-pdf-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.mock-pdf-detail {
    min-height: 76px;
    padding: 14px 15px;
    border: 1px solid #d6e4ff;
    border-radius: 12px;
    background: #ffffff;
}

.mock-pdf-detail span,
.mock-pdf-score-card span,
.mock-pdf-summary span {
    display: block;
    color: #52627a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mock-pdf-detail strong {
    display: block;
    margin-top: 8px;
    color: #06164a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.mock-pdf-scores {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.mock-pdf-score-card {
    display: grid;
    justify-items: center;
    min-height: 160px;
    padding: 18px 14px 16px;
    border: 1px solid #d6e4ff;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
}

.mock-pdf-score-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #eef4ff;
    color: #0b5fff;
}

.mock-pdf-score-icon svg {
    width: 23px;
    height: 23px;
    color: #0b5fff;
}

.mock-pdf-score-card strong {
    margin-top: 8px;
    color: #06164a;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.mock-pdf-score-card small {
    margin-top: 9px;
    color: #52627a;
    font-size: 12px;
    font-weight: 800;
}

.mock-pdf-summary {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 12px;
    margin-top: 30px;
}

.mock-pdf-summary div {
    min-height: 82px;
    padding: 16px 18px;
    border: 1px solid #cbd9ea;
    border-radius: 14px;
    background: #f8fbff;
}

.mock-pdf-summary strong {
    display: block;
    margin-top: 9px;
    color: #06164a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.mock-pdf-note {
    margin-top: 30px;
    padding: 22px 24px;
    border: 1px solid #cbd9ea;
    border-radius: 16px;
    background: #ffffff;
}

.mock-pdf-note strong {
    display: block;
    color: #0b5fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mock-pdf-note p {
    margin: 10px 0 0;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.mock-pdf-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 2px solid #06164a;
}

.mock-pdf-footer span {
    color: #06164a;
    font-size: 12px;
    font-weight: 900;
}

.mock-result-state {
    display: grid;
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
}

.mock-result-state h1,
.mock-result-state p {
    margin: 0;
}

.mock-result-state p {
    color: var(--mock-muted);
    font-size: 16px;
    line-height: 1.6;
}

body.dark-theme.mock-result-page {
    background:
        radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.20), transparent 36%),
        linear-gradient(135deg, #08081b 0%, #101735 100%);
}

body.dark-theme .mock-result-panel {
    border-color: rgba(148, 163, 184, 0.24);
    background:
        radial-gradient(circle at 78% 10%, rgba(96, 165, 250, 0.12), transparent 24%),
        #0a1028;
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.34);
}

body.dark-theme .mock-result-panel h1,
body.dark-theme .mock-info-copy strong,
body.dark-theme .band-score-value {
    color: #f8fbff;
}

body.dark-theme .mock-result-eyebrow,
body.dark-theme .mock-candidate-panel,
body.dark-theme .band-score-card,
body.dark-theme .mock-result-button--secondary {
    border-color: rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.78);
}

body.dark-theme .mock-info-copy span,
body.dark-theme .band-score-label,
body.dark-theme .mock-result-state p {
    color: #b9c7df;
}

body.dark-theme .mock-info-item:not(:last-child)::after,
body.dark-theme .mock-result-divider {
    background: rgba(148, 163, 184, 0.22);
}

body.dark-theme .mock-result-button--secondary {
    color: #f8fbff;
}

body.dark-theme .mock-result-button--secondary:hover {
    background: rgba(37, 99, 235, 0.16);
    color: #93c5fd;
}

.mock-exit-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 21, 71, 0.42);
    backdrop-filter: blur(5px);
}

.mock-exit-modal.hidden {
    display: none;
}

.mock-exit-dialog {
    display: grid;
    gap: 14px;
    width: min(460px, 100%);
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--mock-shadow);
}

.mock-exit-dialog h2 {
    margin: 0;
    color: var(--mock-text);
    font-size: 24px;
    line-height: 1.15;
}

.mock-exit-dialog p {
    margin: 0;
    color: var(--mock-muted);
    font-size: 15px;
    line-height: 1.55;
}

.mock-exit-dialog strong {
    color: var(--mock-text);
    font-size: 16px;
}

.mock-exit-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.mock-btn-danger {
    background: var(--mock-red);
}

.mock-btn-danger:hover {
    background: #b90f26;
    box-shadow: 0 10px 24px rgba(217, 21, 50, 0.16);
}

@media (max-width: 980px) {
    .mock-list-grid,
    .band-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mock-result-shell {
        width: min(820px, calc(100% - 34px));
        min-height: auto;
        padding: 34px 0 58px;
    }

    .mock-result-panel {
        padding: 42px 34px;
    }

    .mock-result-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mock-result-panel h1 {
        font-size: 46px;
    }

    .mock-candidate-panel {
        max-width: none;
    }

    .overall-band-card {
        justify-self: start;
    }

    .mock-intro-header {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        padding: 0 24px;
    }

    .mock-intro-wrap {
        min-height: calc(100vh - 72px);
    }

    .mock-intro-card {
        padding: 40px 34px;
    }

    .mock-intro-grid {
        grid-template-columns: 1fr;
    }

    .mock-intro-section-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mock-player-topbar,
    .mock-player-main {
        grid-template-columns: 1fr;
    }

    .mock-player-actions {
        justify-content: flex-start;
    }

    .mock-flow-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mock-progress-tabs--flow {
        top: 105px;
    }

    .mock-pane {
        max-height: none;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .mock-list-shell {
        width: 90%;
    }

    .mock-list-grid,
    .band-score-grid,
    .mock-section-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mock-list-shell .mock-list-grid {
        grid-template-columns: 1fr;
        padding: 18px 0 54px;
    }

    .mock-test-card {
        min-height: 380px;
        padding: 22px;
        border-radius: 24px;
        gap: 18px;
    }

    .mock-test-card .test-card-top {
        margin-bottom: 0;
    }

    .mock-test-card .test-card-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .mock-card-icon-wrap {
        min-width: 130px;
        min-height: 56px;
    }

    .mock-card-dots {
        left: 42px;
        width: 92px;
        opacity: 0.62;
    }

    .mock-test-card .test-card-icon svg {
        width: 29px;
        height: 29px;
    }

    .mock-access-pill {
        min-height: 34px;
        padding: 0 15px;
        font-size: 13px;
    }

    .mock-test-card .test-card-content h2 {
        font-size: 27px;
        line-height: 1.12;
    }

    .mock-detail-row {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 0;
    }

    .mock-detail-icon {
        width: 38px;
        height: 38px;
    }

    .mock-detail-icon svg {
        width: 21px;
        height: 21px;
    }

    .mock-detail-text {
        font-size: 14px;
    }

    .mock-test-card .test-card-button {
        min-height: 56px;
        border-radius: 15px;
        font-size: 16px;
    }

    .test-card-button-arrow {
        width: 22px;
        height: 22px;
    }

    .mock-intro-card {
        padding: 28px 20px 30px;
        border-radius: 22px;
    }

    .mock-intro-section-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mock-intro-section-card {
        min-height: 112px;
        padding: 18px 20px;
    }

    .mock-intro-section h1 {
        font-size: 27px;
    }

    .mock-intro-header {
        grid-template-columns: 1fr;
        min-height: 112px;
        gap: 8px;
        padding: 14px 20px;
        text-align: center;
    }

    .mock-intro-brand,
    .mock-intro-candidate,
    .mock-intro-taker-id {
        justify-self: center;
    }

    .mock-intro-brand img {
        height: 34px;
    }

    .mock-intro-candidate {
        font-size: 20px;
    }

    .mock-intro-taker-id {
        overflow-wrap: anywhere;
        font-size: 13px;
        text-align: center;
    }

    .mock-intro-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mock-start-panel,
    .mock-section-done,
    .mock-prep-panel,
    .mock-result-panel {
        padding: 22px;
    }

    .mock-start-panel h1 {
        font-size: 28px;
    }

    .mock-result-shell {
        width: min(100% - 24px, 560px);
        padding: 22px 0 44px;
    }

    .mock-result-panel {
        border-radius: 20px;
    }

    .mock-result-eyebrow {
        min-height: 36px;
        padding: 0 16px;
        font-size: 12px;
        white-space: normal;
    }

    .mock-result-panel h1 {
        margin: 22px 0 24px;
        font-size: 34px;
    }

    .mock-candidate-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mock-info-item {
        padding: 16px 18px;
    }

    .mock-info-item:not(:last-child)::after {
        top: auto;
        right: 18px;
        bottom: 0;
        left: 86px;
        width: auto;
        height: 1px;
    }

    .overall-band-card {
        width: 100%;
        min-height: 220px;
    }

    .mock-overall-score {
        font-size: 70px;
    }

    .mock-result-divider {
        margin: 26px 0;
    }

    .band-score-card {
        min-height: 118px;
        height: 118px;
        padding: 20px 18px;
    }

    .band-score-icon {
        width: 58px;
        height: 58px;
    }

    .band-score-value {
        font-size: 34px;
    }

    .mock-result-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .mock-result-button {
        width: 100%;
        min-height: 54px;
        padding: 0 22px;
        font-size: 16px;
    }

    .mock-prep-timer {
        min-height: 74px;
        font-size: 38px;
    }
}
html.dark-theme body.public-page[data-practice-skill="mock"],
body.dark-theme.public-page[data-practice-skill="mock"] {
    color: #f8fbff;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(99, 102, 241, 0.10) 42%, rgba(8, 8, 24, 0) 72%),
        #08081b;
}

html.dark-theme body.public-page[data-practice-skill="mock"] .test-list-page-header,
body.dark-theme.public-page[data-practice-skill="mock"] .test-list-page-header {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(145deg, rgba(13, 14, 37, 0.96), rgba(8, 8, 24, 0.92));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

html.dark-theme body.public-page[data-practice-skill="mock"] .test-list-page-header h1,
body.dark-theme.public-page[data-practice-skill="mock"] .test-list-page-header h1,
html.dark-theme body.public-page[data-practice-skill="mock"] .mock-test-card .test-card-content h2,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-test-card .test-card-content h2 {
    color: #f8fbff;
}

html.dark-theme body.public-page[data-practice-skill="mock"] .test-list-page-header p,
body.dark-theme.public-page[data-practice-skill="mock"] .test-list-page-header p,
html.dark-theme body.public-page[data-practice-skill="mock"] .test-list-meta,
body.dark-theme.public-page[data-practice-skill="mock"] .test-list-meta,
html.dark-theme body.public-page[data-practice-skill="mock"] .mock-card-lines,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-card-lines {
    color: #aebbd2;
}

html.dark-theme body.public-page[data-practice-skill="mock"] .mock-detail-row + .mock-detail-row,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-detail-row + .mock-detail-row {
    border-top-color: rgba(148, 163, 184, 0.18);
}

html.dark-theme body.public-page[data-practice-skill="mock"] .mock-detail-icon,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-detail-icon {
    background: rgba(37, 99, 235, 0.16);
    color: #7db4ff;
}

html.dark-theme body.public-page[data-practice-skill="mock"] .mock-detail-text,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-detail-text {
    color: #d6e0f2;
}

html.dark-theme body.public-page[data-practice-skill="mock"] .mock-test-card,
body.dark-theme.public-page[data-practice-skill="mock"] .mock-test-card {
    border: 1px solid rgba(148, 163, 184, 0.20);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 11, 31, 0.94));
    color: #f8fbff;
}
