/* Trophy guide presentation matched to the supplied HTML template. */
body.dm-ps-trophy-guide-page {
    background: #07080b;
}

.dm-pt-guide {
    --pt-bg: #07080b;
    --pt-card: #0d1014;
    --pt-card-2: #11141a;
    --pt-border: rgba(255, 255, 255, 0.07);
    --pt-text: #e9ebef;
    --pt-soft: #c7ccd3;
    --pt-muted: #9da3ac;
    --pt-dim: #6a707a;
    --pt-red: #ef202c;
    --pt-red-soft: #ff6b72;
    --pt-blue: #2bb8da;
    --pt-green: #4ecb8a;
    min-height: 100vh;
    padding-bottom: 72px;
    background: var(--pt-bg);
    color: var(--pt-text);
    font-family: "IBM Plex Sans", Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.dm-pt-guide *,
.dm-pt-guide *::before,
.dm-pt-guide *::after {
    box-sizing: border-box;
}

.dm-pt-guide h1,
.dm-pt-guide h2,
.dm-pt-guide h3,
.dm-pt-guide strong,
.dm-pt-guide button,
.dm-pt-guide .dm-pt-tier,
.dm-pt-guide .dm-pt-flag {
    font-family: Archivo, Outfit, sans-serif;
}

.dm-pt-shell {
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto;
}

.dm-pt-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding: 22px 2px 4px;
    color: var(--pt-dim);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.dm-pt-breadcrumb a {
    color: #8b919b;
    text-decoration: none;
}

.dm-pt-breadcrumb a:hover,
.dm-pt-breadcrumb a:focus-visible {
    color: var(--pt-red);
}

.dm-pt-breadcrumb span:nth-last-child(2) {
    color: #3a3e45;
}

.dm-pt-breadcrumb span:last-child {
    color: var(--pt-soft);
}

.dm-pt-hero {
    padding: 8px 2px 4px;
}

.dm-pt-hero h1 {
    max-width: none;
    margin: 0 0 16px;
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-wrap: balance;
}

.dm-pt-hero__lead {
    max-width: none;
    margin: 0 0 14px;
    color: var(--pt-soft);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.dm-pt-hero__lead strong {
    color: #fff;
    font-weight: 700;
}

.dm-pt-hero__body {
    max-width: 1040px;
    margin: 0 0 6px;
    color: var(--pt-muted);
    font-size: 16px;
    line-height: 1.75;
}

.dm-pt-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    color: var(--pt-dim);
    font-size: 13px;
    font-weight: 500;
}

.dm-pt-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.dm-pt-hero__meta svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--pt-blue);
    stroke-width: 2;
}

.dm-pt-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 24px 0 70px;
}

.dm-pt-content {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
}

.dm-pt-aside {
    order: 2;
    flex: 0 0 270px;
    align-self: stretch;
    min-width: 0;
}

.dm-pt-toc {
    position: sticky;
    top: 128px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: var(--pt-card);
}

.dm-pt-toc__title {
    margin: 0 8px 8px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--pt-dim);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dm-pt-toc__links {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dm-pt-toc__links a {
    display: block;
    padding: 8px 12px;
    border-left: 2px solid transparent;
    border-radius: 8px;
    color: #8b919b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.dm-pt-toc__links a:hover,
.dm-pt-toc__links a:focus-visible,
.dm-pt-toc__links a.is-active {
    border-left-color: var(--pt-red);
    background: rgba(239, 32, 44, 0.08);
    color: #fff;
}

.dm-pt-toc__cta {
    margin: 16px -1px -1px;
    padding: 18px;
    border: 1px solid rgba(239, 32, 44, 0.22);
    border-radius: 12px;
    background: linear-gradient(160deg, #15090b, var(--pt-card));
}

.dm-pt-toc__cta strong,
.dm-pt-toc__cta span {
    display: block;
}

.dm-pt-toc__cta strong {
    margin-bottom: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.dm-pt-toc__cta span {
    margin-bottom: 12px;
    color: var(--pt-muted);
    font-size: 13px;
    line-height: 1.55;
}

.dm-pt-toc__cta a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 9px 14px;
    border-radius: 7px;
    background: var(--pt-red);
    color: #fff;
    font-family: Archivo, Outfit, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.dm-pt-section {
    margin: 0 0 52px;
    scroll-margin-top: 120px;
}

.dm-pt-section__head,
.dm-pt-section__head--split {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.dm-pt-section__head > span {
    flex: 0 0 4px;
    width: 4px;
    height: 26px;
    border-radius: 2px;
    background: var(--pt-red);
}

.dm-pt-section__head > div {
    min-width: 0;
}

.dm-pt-section__head p {
    display: none;
}

.dm-pt-section__head h2 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.dm-pt-total {
    margin-left: auto;
    color: var(--pt-dim);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.dm-pt-section__intro {
    max-width: 700px;
    margin: -10px 0 20px;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.7;
}

.dm-pt-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-quick-card {
    min-height: 0;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
}

.dm-pt-quick-card:nth-child(3n) {
    border-right: 0;
}

.dm-pt-quick-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
}

.dm-pt-quick-card > span {
    display: block;
    margin-bottom: 7px;
    color: var(--pt-dim);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
}

.dm-pt-quick-card strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.dm-pt-data-note,
.dm-pt-answer-footnote {
    margin: 12px 2px 0;
    color: var(--pt-dim);
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
}

.dm-pt-glance,
.dm-pt-trophy-list {
    overflow: hidden;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-glance__row {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-pt-glance__row:last-child {
    border-bottom: 0;
}

.dm-pt-glance__tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 26px;
    padding: 5px 8px;
    border-radius: 4px;
    background: #c0741c;
    color: #fff !important;
    font-family: Archivo, Outfit, sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
}

.dm-pt-glance__row:nth-child(even) .dm-pt-glance__tag span {
    background: #9b2c2c;
}

.dm-pt-glance__items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 16px;
}

.dm-pt-glance__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pt-soft);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.dm-pt-glance__medal {
    display: inline-flex;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.dm-pt-glance__medal svg,
.dm-pt-medal svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.dm-pt-glance__medal--bronze,
.dm-pt-medal--bronze { color: #c2814e; }
.dm-pt-glance__medal--silver,
.dm-pt-medal--silver { color: #aeb7c2; }
.dm-pt-glance__medal--gold,
.dm-pt-medal--gold { color: #e0a92e; }
.dm-pt-glance__medal--platinum,
.dm-pt-medal--platinum { color: #5bc8e6; }

.dm-pt-tier-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    padding: 0 2px;
}

.dm-pt-tier-legend > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8b919b;
    font-size: 12.5px;
    font-weight: 500;
}

.dm-pt-roadmap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dm-pt-phase {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-phase__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(239, 32, 44, 0.3);
    border-radius: 11px;
    background: rgba(239, 32, 44, 0.12);
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.dm-pt-phase h3 {
    margin: 4px 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.dm-pt-phase p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.7;
}

.dm-pt-trophy-groups {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.dm-pt-trophy-group > h3 {
    margin: 0 0 10px 2px;
    color: #7e848d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.dm-pt-trophy-group > h3 span {
    display: none;
}

.dm-pt-trophy {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: start;
    gap: 13px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-pt-trophy:last-child {
    border-bottom: 0;
}

.dm-pt-medal {
    display: inline-flex;
    width: 26px;
    height: 26px;
    margin-top: 1px;
}

.dm-pt-trophy__copy {
    min-width: 0;
}

.dm-pt-trophy__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 4px;
}

.dm-pt-trophy__title strong {
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
}

.dm-pt-trophy__copy p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.dm-pt-tier,
.dm-pt-flag {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 22px;
    padding: 3px 9px;
    border: 1px solid currentColor;
    border-radius: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.dm-pt-tier--bronze { color: #c2814e; background: rgba(194, 129, 78, 0.1); }
.dm-pt-tier--silver { color: #aeb7c2; background: rgba(174, 183, 194, 0.1); }
.dm-pt-tier--gold { color: #e0a92e; background: rgba(224, 169, 46, 0.1); }
.dm-pt-tier--platinum { color: #5bc8e6; background: rgba(91, 200, 230, 0.1); }

.dm-pt-flag {
    min-height: 20px;
    padding: 2px 7px;
    border-color: rgba(239, 32, 44, 0.3);
    border-radius: 4px;
    background: rgba(239, 32, 44, 0.12);
    color: var(--pt-red-soft);
    font-size: 9.5px;
}

.dm-pt-answer-card,
.dm-pt-difficulty-card,
.dm-pt-warning,
.dm-pt-autopop,
.dm-pt-tips > section,
.dm-pt-hardest > article {
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-answer-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-left: 3px solid var(--pt-green);
}

.dm-pt-answer-card__badge {
    flex: 0 0 auto;
    padding: 6px 11px;
    border: 1px solid rgba(78, 203, 138, 0.3);
    border-radius: 7px;
    background: rgba(78, 203, 138, 0.12);
    color: var(--pt-green);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.dm-pt-answer-card h3,
.dm-pt-warning h3,
.dm-pt-tips h3,
.dm-pt-hardest h3,
.dm-pt-legends-grid h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.dm-pt-answer-card p,
.dm-pt-warning p,
.dm-pt-autopop p,
.dm-pt-legends-grid p,
.dm-pt-hardest p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.dm-pt-difficulty-card {
    padding: 22px 24px;
}

.dm-pt-difficulty-card__answer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dm-pt-difficulty-card__answer span {
    display: inline-flex;
    padding: 6px 13px;
    border: 1px solid rgba(78, 203, 138, 0.3);
    border-radius: 7px;
    background: rgba(78, 203, 138, 0.12);
    color: var(--pt-green);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dm-pt-difficulty-card__answer strong {
    color: #fff;
    font-family: "IBM Plex Sans", Inter, system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.dm-pt-difficulty-card ul,
.dm-pt-checklist,
.dm-pt-tips ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dm-pt-difficulty-card li,
.dm-pt-checklist li,
.dm-pt-tips li {
    position: relative;
    padding-left: 18px;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.65;
}

.dm-pt-difficulty-card li::before,
.dm-pt-checklist li::before,
.dm-pt-tips li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pt-green);
}

.dm-pt-collectibles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dm-pt-collectibles article {
    display: block;
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--pt-border);
    border-radius: 13px;
    background: var(--pt-card);
}

.dm-pt-collectibles article > span {
    display: block;
    margin: 0 0 6px;
    color: #fff;
    font-family: Archivo, Outfit, sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.dm-pt-collectibles h3 {
    margin: 0 0 4px;
    color: var(--pt-text);
    font-size: 15px;
    font-weight: 700;
}

.dm-pt-collectibles p {
    margin: 0;
    color: var(--pt-dim);
    font-size: 12.5px;
    line-height: 1.4;
}

.dm-pt-warning {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-left: 3px solid #e0a92e;
}

.dm-pt-warning__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(224, 169, 46, 0.13);
    color: #e0a92e;
    font-family: Archivo, Outfit, sans-serif;
    font-weight: 800;
}

.dm-pt-checklist {
    margin-top: 14px;
    padding: 18px 20px;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-checklist li::before,
.dm-pt-tips li::before {
    background: var(--pt-red);
}

.dm-pt-autopop {
    padding: 22px 24px;
}

.dm-pt-autopop__path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.dm-pt-autopop__path span,
.dm-pt-autopop__path strong {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid var(--pt-border);
    border-radius: 7px;
    background: var(--pt-card-2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.dm-pt-autopop__path strong {
    border-color: rgba(78, 203, 138, 0.3);
    background: rgba(78, 203, 138, 0.12);
    color: var(--pt-green);
}

.dm-pt-autopop__path i {
    color: var(--pt-dim);
    font-style: normal;
}

.dm-pt-autopop p + p {
    margin-top: 10px;
}

.dm-pt-autopop ol {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0 0 14px;
    padding-left: 22px;
    color: var(--pt-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.dm-pt-autopop li::marker {
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-weight: 700;
}

.dm-pt-autopop li strong {
    color: #fff;
    font-family: "IBM Plex Sans", Inter, system-ui, sans-serif;
    font-weight: 600;
}

.dm-pt-legends-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dm-pt-legends-grid article {
    padding: 20px;
    border: 1px solid var(--pt-border);
    border-radius: 13px;
    background: var(--pt-card);
}

.dm-pt-legends-grid article > span {
    display: block;
    margin-bottom: 10px;
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dm-pt-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(78, 203, 138, 0.24);
    border-radius: 11px;
    background: rgba(78, 203, 138, 0.07);
}

.dm-pt-note svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--pt-green);
    stroke-width: 2;
}

.dm-pt-note p {
    margin: 0;
    color: #9fc8b1;
    font-size: 13.5px;
    line-height: 1.6;
}

.dm-pt-tips {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dm-pt-tips > section {
    padding: 22px 24px;
}

.dm-pt-tips h3 {
    margin-bottom: 14px;
    font-size: 18px;
}

.dm-pt-hardest {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dm-pt-hardest > article {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 24px;
}

.dm-pt-hardest > article > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(239, 32, 44, 0.3);
    border-radius: 7px;
    background: rgba(239, 32, 44, 0.12);
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.dm-pt-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dm-pt-faq details {
    overflow: hidden;
    border: 1px solid var(--pt-border);
    border-radius: 12px;
    background: var(--pt-card);
}

.dm-pt-faq summary {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.dm-pt-faq summary::-webkit-details-marker {
    display: none;
}

.dm-pt-faq summary h3 {
    flex: 1;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.dm-pt-faq summary > span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #8b919b;
    border-bottom: 2px solid #8b919b;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.dm-pt-faq details[open] summary > span {
    transform: rotate(225deg);
}

.dm-pt-faq details > p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.7;
}

.dm-pt-closing {
    display: block;
    padding: 32px 34px;
    border: 1px solid rgba(239, 32, 44, 0.2);
    border-radius: 16px;
    background: radial-gradient(ellipse 80% 140% at 100% 0%, rgba(239, 32, 44, 0.18), transparent 55%), linear-gradient(135deg, #15090b, var(--pt-card));
}

.dm-pt-closing strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
}

.dm-pt-closing p {
    max-width: 640px;
    margin: 0 0 18px;
    color: #b6bbc3;
    font-size: 15.5px;
    line-height: 1.7;
}

.dm-pt-closing > a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 16px;
    border-radius: 7px;
    background: var(--pt-red);
    color: #fff;
    font-family: Archivo, Outfit, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.dm-pt-toc__cta a:hover,
.dm-pt-toc__cta a:focus-visible,
.dm-pt-closing > a:hover,
.dm-pt-closing > a:focus-visible {
    background: #ff3540;
}

.dm-pt-guide--generic .dm-pt-hero__lead > p,
.dm-pt-guide--generic .dm-pt-hero__body > p {
    margin: 0;
}

.dm-pt-guide--generic .dm-pt-hero__lead a,
.dm-pt-guide--generic .dm-pt-hero__body a,
.dm-pt-prose a {
    color: var(--pt-red-soft);
    font-weight: 600;
    text-decoration: none;
}

.dm-pt-guide--generic .dm-pt-hero__lead a:hover,
.dm-pt-guide--generic .dm-pt-hero__body a:hover,
.dm-pt-prose a:hover {
    color: #fff;
}

.dm-pt-section__intro-rich {
    max-width: 760px;
    margin: -8px 0 20px;
}

.dm-pt-prose {
    color: var(--pt-muted);
    font-size: 15px;
    line-height: 1.7;
}

.dm-pt-prose > :first-child {
    margin-top: 0;
}

.dm-pt-prose > :last-child {
    margin-bottom: 0;
}

.dm-pt-prose p {
    margin: 0 0 14px;
}

.dm-pt-prose strong {
    color: var(--pt-soft);
    font-family: "IBM Plex Sans", Inter, system-ui, sans-serif;
    font-weight: 700;
}

.dm-pt-prose h3,
.dm-pt-prose h4 {
    margin: 24px 0 10px;
    color: #fff;
    font-family: Archivo, Outfit, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.dm-pt-prose h3 {
    font-size: 18px;
}

.dm-pt-prose h4 {
    font-size: 16px;
}

.dm-pt-prose ul,
.dm-pt-prose ol {
    margin: 0 0 16px;
    padding-left: 23px;
}

.dm-pt-prose li {
    margin-bottom: 7px;
}

.dm-pt-prose li::marker {
    color: var(--pt-red-soft);
}

.dm-pt-prose blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 3px solid #e0a92e;
    border-radius: 8px;
    background: var(--pt-card);
    color: var(--pt-soft);
}

.dm-pt-prose table {
    width: 100%;
    margin: 18px 0;
    overflow: hidden;
    border: 1px solid var(--pt-border);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 13px;
    background: var(--pt-card);
    color: var(--pt-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.dm-pt-prose th,
.dm-pt-prose td {
    padding: 12px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    vertical-align: top;
}

.dm-pt-prose th:last-child,
.dm-pt-prose td:last-child {
    border-right: 0;
}

.dm-pt-prose tr:last-child td {
    border-bottom: 0;
}

.dm-pt-prose th {
    background: var(--pt-card-2);
    color: #fff;
    font-family: Archivo, Outfit, sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dm-pt-prose code {
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--pt-card-2);
    color: var(--pt-soft);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.9em;
}

.dm-pt-phase .dm-pt-prose {
    font-size: 15px;
}

.dm-pt-phase .dm-pt-prose p {
    margin-bottom: 12px;
}

.dm-pt-prose-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dm-pt-prose-cards > article {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 24px;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
}

.dm-pt-prose-cards > article > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(239, 32, 44, 0.3);
    border-radius: 7px;
    background: rgba(239, 32, 44, 0.12);
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.dm-pt-prose-cards h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.dm-pt-faq details > .dm-pt-prose {
    padding: 0 20px 20px;
}

.dm-pt-faq details > .dm-pt-prose p {
    margin: 0;
}

.dm-pt-hub-hero {
    padding-bottom: 28px;
}

.dm-pt-hub-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.dm-pt-hub-stats > div {
    padding: 18px 20px;
    border: 1px solid var(--pt-border);
    border-radius: 13px;
    background: var(--pt-card);
}

.dm-pt-hub-stats strong,
.dm-pt-hub-stats span {
    display: block;
}

.dm-pt-hub-stats strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.dm-pt-hub-stats span {
    color: var(--pt-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dm-pt-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dm-pt-hub-card {
    display: flex;
    flex-direction: column;
    min-height: 168px;
    padding: 20px;
    border: 1px solid var(--pt-border);
    border-radius: 14px;
    background: var(--pt-card);
    color: inherit;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.dm-pt-hub-card:hover,
.dm-pt-hub-card:focus-visible {
    border-color: rgba(239, 32, 44, 0.34);
    background: #11141a;
    transform: translateY(-2px);
}

.dm-pt-hub-card > span {
    margin-bottom: 11px;
    color: var(--pt-red-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dm-pt-hub-card h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.dm-pt-hub-card p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.dm-pt-hub-card i {
    margin-top: auto;
    padding-top: 14px;
    color: var(--pt-soft);
    font-family: Archivo, Outfit, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .dm-pt-layout {
        gap: 32px;
    }

    .dm-pt-aside {
        flex-basis: 240px;
    }

    .dm-pt-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dm-pt-quick-card,
    .dm-pt-quick-card:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dm-pt-quick-card:nth-child(2n) {
        border-right: 0;
    }

    .dm-pt-quick-card:last-child {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .dm-pt-collectibles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .dm-pt-shell {
        width: min(760px, calc(100% - 30px));
    }

    .dm-pt-hero h1 {
        font-size: 40px;
    }

    .dm-pt-layout {
        flex-direction: column;
        gap: 28px;
    }

    .dm-pt-aside,
    .dm-pt-content {
        width: 100%;
    }

    .dm-pt-aside {
        order: 0;
        flex: 0 0 auto;
    }

    .dm-pt-content {
        order: 1;
    }

    .dm-pt-toc {
        position: static;
        padding: 12px;
    }

    .dm-pt-toc__title {
        margin: 0 2px 9px;
        padding-bottom: 9px;
        font-size: 10px;
    }

    .dm-pt-toc__links {
        flex-direction: row;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .dm-pt-toc__links::-webkit-scrollbar {
        display: none;
    }

    .dm-pt-toc__links a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 7px 11px;
        border: 1px solid var(--pt-border);
        background: var(--pt-card-2);
        white-space: nowrap;
    }

    .dm-pt-toc__cta {
        display: none;
    }

    .dm-pt-legends-grid {
        grid-template-columns: 1fr;
    }

    .dm-pt-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .dm-pt-guide {
        padding-bottom: 48px;
    }

    .dm-pt-shell {
        width: calc(100% - 24px);
    }

    .dm-pt-breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-top: 17px;
        font-size: 11.5px;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .dm-pt-hero {
        padding-top: 10px;
    }

    .dm-pt-hero h1 {
        margin-bottom: 14px;
        font-size: 34px;
        line-height: 1.08;
    }

    .dm-pt-hero__lead {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .dm-pt-hero__body {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .dm-pt-hero__meta {
        font-size: 11.5px;
    }

    .dm-pt-layout {
        padding-top: 20px;
    }

    .dm-pt-section {
        margin-bottom: 46px;
        scroll-margin-top: 88px;
    }

    .dm-pt-section__head,
    .dm-pt-section__head--split {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .dm-pt-section__head h2 {
        font-size: 24px;
    }

    .dm-pt-total {
        display: none;
    }

    .dm-pt-quick-grid {
        grid-template-columns: 1fr;
    }

    .dm-pt-quick-card,
    .dm-pt-quick-card:nth-child(2n),
    .dm-pt-quick-card:nth-child(3n) {
        grid-column: auto;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dm-pt-quick-card:last-child {
        border-bottom: 0;
    }

    .dm-pt-glance__row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .dm-pt-glance__tag span {
        width: auto;
        min-width: 108px;
    }

    .dm-pt-glance__item {
        white-space: normal;
    }

    .dm-pt-phase {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
    }

    .dm-pt-phase__number {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .dm-pt-phase h3 {
        margin-top: 2px;
        font-size: 16px;
    }

    .dm-pt-phase p {
        font-size: 13.5px;
    }

    .dm-pt-trophy {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 11px;
        padding: 14px;
    }

    .dm-pt-tier {
        grid-column: 2;
        justify-self: start;
    }

    .dm-pt-answer-card,
    .dm-pt-difficulty-card__answer {
        flex-direction: column;
    }

    .dm-pt-difficulty-card,
    .dm-pt-autopop,
    .dm-pt-tips > section,
    .dm-pt-hardest > article {
        padding: 18px;
    }

    .dm-pt-collectibles {
        grid-template-columns: 1fr;
    }

    .dm-pt-closing {
        padding: 24px 20px;
    }

    .dm-pt-closing strong {
        font-size: 20px;
    }

    .dm-pt-prose table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 11px;
        white-space: normal;
    }

    .dm-pt-prose th,
    .dm-pt-prose td {
        min-width: 135px;
        padding: 10px 12px;
    }

    .dm-pt-prose-cards > article {
        padding: 18px;
    }

    .dm-pt-hub-stats,
    .dm-pt-hub-grid {
        grid-template-columns: 1fr;
    }

    .dm-pt-hub-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dm-pt-guide * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
