:root {
    --d2-bg: #030706;
    --d2-bg-soft: #07100e;
    --d2-panel: rgba(7, 15, 14, .94);
    --d2-panel-soft: rgba(10, 22, 20, .88);
    --d2-line: rgba(137, 191, 177, .27);
    --d2-line-strong: rgba(92, 231, 197, .72);
    --d2-jade: #58e7c5;
    --d2-jade-bright: #9fffe8;
    --d2-jade-deep: #087c69;
    --d2-silver: #d9e3e0;
    --d2-muted: #8fa39e;
    --d2-danger: #d66969;
    --d2-gold: #d6bc7a;
    --d2-shadow: 0 26px 80px rgba(0, 0, 0, .55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--d2-bg);
    scroll-behavior: smooth;
}

body.d2-site {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--d2-silver);
    background:
        radial-gradient(circle at 50% 15%, rgba(31, 113, 95, .14), transparent 35rem),
        linear-gradient(180deg, #06100e 0, #020504 70%);
    font-family: CronosPro, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

body.d2-site.d2-home {
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(2, 7, 6, .12) 0, rgba(1, 7, 6, .86) 48%, rgba(2, 9, 7, .94) 100%),
        url(../images/site/dark2-hero-reference.png) center bottom / cover fixed no-repeat,
        #030706;
}

body.d2-site::before {
    display: block;
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: -1;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(115, 197, 176, .018) 80px),
        repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(115, 197, 176, .015) 80px);
    content: "";
}

body.d2-site::after {
    position: fixed;
    inset: 0;
    z-index: 999;
    border: 1px solid rgba(158, 204, 193, .28);
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, .55), inset 0 0 30px rgba(0, 0, 0, .55);
    content: "";
    pointer-events: none;
}

.d2-site a {
    color: var(--d2-jade);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.d2-site a:hover,
.d2-site a:focus {
    color: var(--d2-jade-bright);
    text-decoration: none;
}

.d2-skip-link {
    position: fixed;
    top: -70px;
    left: 1rem;
    z-index: 1000;
    padding: .75rem 1rem;
    color: #00110e !important;
    background: var(--d2-jade-bright);
}

.d2-skip-link:focus {
    top: 1rem;
}

.d2-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
}

.d2-header::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #020504, rgba(156, 196, 187, .4) 20%, rgba(32, 107, 90, .55) 50%, rgba(156, 196, 187, .4) 80%, #020504);
    content: "";
}

.d2-header::after {
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(124, 231, 205, .75);
    background: #07120f;
    box-shadow: 0 0 15px rgba(61, 227, 187, .24);
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.d2-nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60px;
    margin: 0 auto;
    padding: 0 clamp(40px, 18vw, 330px);
    border: 1px solid rgba(172, 217, 206, .25);
    border-top-color: rgba(222, 242, 237, .42);
    background: linear-gradient(180deg, rgba(8, 14, 13, .96), rgba(2, 7, 6, .91));
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .035);
    clip-path: none;
}

.d2-nav-shell::before,
.d2-nav-shell::after {
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid var(--d2-jade-deep);
    background: #0a1e1a;
    content: "";
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 12px rgba(88, 231, 197, .5);
}

.d2-nav-shell::before { left: 1px; }
.d2-nav-shell::after { right: 1px; }

.d2-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-width: 150px;
    height: 58px;
    overflow: hidden;
}

.d2-wordmark img {
    display: block;
    width: 148px;
    height: auto;
    filter: drop-shadow(0 2px 8px #000);
}

.d2-navigation {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    flex: 1;
    align-self: stretch;
}

.d2-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #c6d0cd !important;
    font-family: EasonPro, Georgia, serif;
    font-size: 14px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.d2-nav-link::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--d2-jade), transparent);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.d2-nav-link:hover,
.d2-nav-link.is-active {
    color: var(--d2-jade-bright) !important;
    background: linear-gradient(180deg, transparent, rgba(56, 206, 170, .07));
}

.d2-nav-link:hover::after,
.d2-nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.d2-nav-login {
    margin-left: 9px;
    border-left: 1px solid var(--d2-line);
}

.d2-nav-login .fa { margin-right: 7px; }

.d2-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 112px;
    gap: 11px;
    font-family: EasonPro, Georgia, serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.d2-language a { color: var(--d2-muted); }
.d2-language a.is-active { color: var(--d2-jade-bright); }
.d2-language span { width: 1px; height: 17px; background: var(--d2-line); }

.d2-menu-toggle {
    display: none;
    width: 44px;
    height: 40px;
    margin-left: auto;
    padding: 9px 10px;
    border: 1px solid var(--d2-line);
    color: #fff;
    background: rgba(4, 13, 11, .8);
}

.d2-menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--d2-jade);
}

.d2-hero {
    position: relative;
    display: grid;
    min-height: 500px;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    place-items: center;
    background-color: #06100e;
    background-image: url(../images/site/dark2-hero-reference.png);
    background-position: center top;
    background-size: cover;
}

.d2-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 4, 3, .42), transparent 28%, transparent 72%, rgba(0, 4, 3, .42)),
        linear-gradient(180deg, rgba(0, 0, 0, .2) 0, rgba(1, 7, 6, .06) 36%, rgba(2, 6, 5, .86) 100%);
    content: "";
}

.d2-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 110px;
    border-top: 1px solid rgba(99, 226, 194, .26);
    background: linear-gradient(180deg, transparent, #030706 85%);
    content: "";
}

.d2-hero-shade {
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: 1;
    width: min(820px, 90vw);
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(1, 6, 5, .7), rgba(1, 6, 5, .25) 48%, transparent 72%);
    filter: blur(2px);
    transform: translateX(-50%);
}

.d2-hero-content {
    position: relative;
    z-index: 3;
    width: min(760px, calc(100% - 40px));
    margin-top: 55px;
    text-align: center;
}

.d2-emblem {
    position: relative;
    width: 170px;
    height: 34px;
    margin: 0 auto -4px;
}

.d2-emblem::before,
.d2-emblem::after {
    position: absolute;
    top: 16px;
    width: 65px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 231, 208, .75));
    content: "";
}

.d2-emblem::before { left: 0; }
.d2-emblem::after { right: 0; transform: scaleX(-1); }

.d2-emblem span {
    position: absolute;
    top: 8px;
    left: 74px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--d2-jade);
    transform: rotate(45deg);
    box-shadow: 0 0 18px rgba(88, 231, 197, .45), inset 0 0 10px rgba(88, 231, 197, .25);
}

.d2-emblem span::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(210, 255, 244, .8);
    content: "";
}

.d2-hero-logo {
    width: min(570px, 88vw);
    margin: -25px auto -26px;
    line-height: 0;
}

.d2-hero-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .72));
}

.d2-hero-kicker {
    margin: 0;
    color: #cdd8d5;
    font-family: EasonPro, Georgia, serif;
    font-size: clamp(16px, 1.45vw, 21px);
    letter-spacing: .34em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px #000;
}

.d2-hero-copy {
    max-width: 650px;
    margin: 14px auto 22px;
    color: #b8c6c2;
    font-size: 16px;
    line-height: 1.55;
    text-shadow: 0 2px 8px #000;
}

.d2-primary-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 360px;
    min-height: 60px;
    padding: 12px 42px;
    border: 1px solid var(--d2-line-strong);
    color: #eafffa !important;
    background: linear-gradient(180deg, rgba(15, 129, 108, .88), rgba(3, 66, 56, .95));
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 18px 100%, 0 50%);
    box-shadow: inset 0 0 20px rgba(111, 255, 220, .16), 0 0 26px rgba(25, 210, 168, .18), 0 12px 34px rgba(0, 0, 0, .5);
    font-family: EasonPro, Georgia, serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.d2-primary-cta::before {
    position: absolute;
    inset: 5px 16px;
    border-top: 1px solid rgba(206, 255, 244, .25);
    border-bottom: 1px solid rgba(0, 24, 20, .7);
    content: "";
}

.d2-primary-cta:hover,
.d2-primary-cta:focus {
    background: linear-gradient(180deg, rgba(27, 169, 140, .96), rgba(4, 91, 76, .98));
    box-shadow: inset 0 0 26px rgba(170, 255, 235, .22), 0 0 38px rgba(47, 234, 190, .3), 0 14px 38px rgba(0, 0, 0, .55);
    transform: translateY(-2px);
}

.d2-primary-cta .fa { margin-left: 18px; font-size: 30px; }

.d2-hero-side {
    position: absolute;
    z-index: 3;
    top: 335px;
    width: 120px;
    margin: 0;
    color: rgba(192, 205, 201, .65);
    font-family: EasonPro, Georgia, serif;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 9px #000;
}

.d2-hero-side-left { left: max(24px, calc(50% - 505px)); }
.d2-hero-side-right { right: max(24px, calc(50% - 505px)); }

.d2-hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 34px;
    color: #9db2ac;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.d2-hero-features span { white-space: nowrap; }
.d2-hero-features .fa { margin-right: 8px; color: var(--d2-jade); }

.d2-inner-hero {
    position: relative;
    height: 350px;
    border-bottom: 1px solid rgba(99, 226, 194, .25);
    background:
        linear-gradient(180deg, rgba(1, 5, 4, .25), #030706 96%),
        url(../images/site/dark2-hero-reference.png) center 26% / cover;
}

.d2-inner-emblem {
    position: absolute;
    top: 138px;
    left: 50%;
    width: 250px;
    transform: translateX(-50%);
}

.d2-inner-emblem img { display: block; width: 100%; height: auto; filter: drop-shadow(0 5px 16px #000); }

.d2-main {
    position: relative;
    z-index: 5;
    min-height: 520px;
    padding: 0 28px 90px;
}

.d2-home .d2-main { margin-top: -78px; }
.d2-site:not(.d2-home) .d2-main { margin-top: -68px; }

.d2-content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    width: min(1440px, 100%);
    margin: 0 auto;
}

.d2-dashboard-main {
    min-height: 0;
    padding-right: 24px;
    padding-bottom: 8px;
    padding-left: 24px;
}

.d2-home .d2-dashboard-main {
    flex: 0 0 auto;
    width: 100%;
    margin-top: -9px;
    background:
        linear-gradient(180deg, rgba(2, 7, 6, .72), rgba(2, 8, 7, .9) 58%, rgba(3, 12, 10, .72)),
        radial-gradient(ellipse at 50% 0, rgba(40, 118, 98, .13), transparent 66%);
}

.d2-home-dashboard {
    display: grid;
    grid-template-columns: 1.03fr 1.18fr 1.15fr 1fr;
    gap: 10px;
    width: min(1554px, 100%);
    margin: 0 auto;
}

.d2-dashboard-card {
    position: relative;
    min-width: 0;
    min-height: 369px;
    height: 369px;
    overflow: hidden;
    border: 1px solid rgba(180, 197, 192, .68);
    border-top-color: rgba(231, 239, 237, .8);
    color: #bac8c4;
    background:
        radial-gradient(circle at 15% 4%, rgba(149, 178, 170, .09), transparent 24%),
        linear-gradient(135deg, rgba(94, 201, 174, .025), transparent 38%),
        linear-gradient(180deg, rgba(7, 15, 14, .995), rgba(1, 6, 5, .995));
    box-shadow:
        0 22px 65px rgba(0, 0, 0, .72),
        inset 0 0 0 3px rgba(0, 0, 0, .82),
        inset 0 0 0 4px rgba(119, 146, 139, .19),
        inset 0 0 28px rgba(0, 0, 0, .6);
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.d2-dashboard-card::before,
.d2-dashboard-card::after {
    position: absolute;
    z-index: 5;
    content: "";
    pointer-events: none;
}

.d2-dashboard-card::before {
    inset: 5px;
    border: 1px solid rgba(142, 164, 158, .23);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.d2-dashboard-card::after {
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 7px, rgba(170, 188, 183, .88) 7px 8px, transparent 8px) top left / 31px 31px no-repeat,
        linear-gradient(225deg, transparent 0 7px, rgba(170, 188, 183, .88) 7px 8px, transparent 8px) top right / 31px 31px no-repeat,
        linear-gradient(45deg, transparent 0 7px, rgba(73, 213, 180, .58) 7px 8px, transparent 8px) bottom left / 31px 31px no-repeat,
        linear-gradient(315deg, transparent 0 7px, rgba(73, 213, 180, .58) 7px 8px, transparent 8px) bottom right / 31px 31px no-repeat;
}

.d2-card-title {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 57px;
    margin: 5px 5px 0;
    padding: 0 17px;
    border-bottom: 1px solid rgba(137, 165, 158, .26);
    background:
        linear-gradient(180deg, rgba(141, 158, 153, .1), rgba(17, 27, 25, .08) 38%, rgba(0, 0, 0, .25)),
        linear-gradient(90deg, rgba(34, 64, 57, .3), rgba(7, 14, 13, .13) 68%, transparent);
    box-shadow: inset 0 1px rgba(232, 242, 239, .07), inset 0 -1px rgba(74, 220, 184, .07), 0 1px rgba(0, 0, 0, .7);
}

.d2-card-title::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(73, 224, 188, .36), rgba(126, 154, 147, .13) 46%, transparent 92%);
    content: "";
}

.d2-card-title h2 {
    flex: 1;
    margin: 0;
    color: #e1e9e7;
    font-family: EasonPro, Georgia, serif;
    font-size: 21px;
    font-weight: normal;
    letter-spacing: 1.45px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.d2-card-title > .fa {
    margin-right: 10px;
    color: #4ff0c9;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(79, 240, 201, .3);
}

.d2-card-title > a {
    margin-left: 10px;
    color: #84d5c1;
    font-size: 11px;
    letter-spacing: .7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.d2-card-title > a span { color: var(--d2-jade); font-size: 17px; }

.d2-status-dot {
    width: 13px;
    height: 13px;
    margin-right: 12px;
    border: 1px solid #8b9c97;
    border-radius: 50%;
    background: #53605d;
    box-shadow: 0 0 0 5px rgba(121, 145, 138, .06);
}

.d2-status-dot.is-online,
.d2-preview-enabled .d2-status-dot {
    border-color: #8dffd1;
    background: #47dd8b;
    box-shadow: 0 0 13px rgba(71, 221, 139, .8), 0 0 0 5px rgba(71, 221, 139, .08);
}

.d2-status-art {
    order: 3;
    flex: 1;
    min-height: 88px;
    margin: 0 5px 5px;
    border-top: 1px solid rgba(151, 177, 170, .18);
    border-bottom: 1px solid rgba(119, 177, 163, .22);
    background:
        linear-gradient(180deg, transparent, rgba(2, 8, 7, .9)),
        url(../images/site/dark2-hero-reference.png) center 50% / cover;
    filter: saturate(.78);
}

.d2-status-card {
    display: flex;
    flex-direction: column;
}

.d2-status-card .d2-card-title { order: 1; }

.d2-status-list {
    order: 2;
    margin: 0;
    padding: 8px 20px 4px;
}

.d2-status-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    border-bottom: 1px solid rgba(135, 163, 156, .17);
}

.d2-status-list dt,
.d2-status-list dd {
    margin: 0;
    font-weight: normal;
}

.d2-status-list dt { color: #9dafaa; font-size: 14px; }
.d2-status-list dd { color: #edf3f1; font-family: EasonPro, Georgia, serif; font-size: 14px; }
.d2-status-list .d2-status-value { color: var(--d2-jade); font-size: 12px; text-transform: uppercase; }

.d2-card-quote {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    z-index: 1;
    margin: 0;
    color: #d0dad7;
    font-family: EasonPro, Georgia, serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
}

.d2-news-list { position: relative; z-index: 2; padding: 4px 20px 12px; }

.d2-news-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    min-height: 96px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(135, 163, 156, .19);
}

.d2-news-thumb {
    display: block;
    min-height: 72px;
    border: 1px solid rgba(157, 181, 175, .36);
    background:
        linear-gradient(180deg, transparent, rgba(0, 10, 8, .45)),
        url(../images/site/dark2-hero-reference.png) center / cover;
    box-shadow: inset 0 0 16px rgba(0, 0, 0, .42), 0 3px 10px rgba(0, 0, 0, .32);
    filter: saturate(.72) contrast(1.08);
}

.d2-news-thumb-one { background-position: 69% 34%; }
.d2-news-thumb-two { background-position: 23% 46%; }
.d2-news-thumb-three { background-position: 51% 10%; }

.d2-news-item time,
.d2-news-item strong,
.d2-news-item small { display: block; }
.d2-news-item time { margin-bottom: 3px; color: #87a69e; font-size: 10px; }
.d2-news-item strong { overflow: hidden; color: #eef3f1; font-family: EasonPro, Georgia, serif; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.d2-news-item small { color: #9fb0ac; font-size: 12px; line-height: 1.28; }

.d2-news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 20px;
    text-align: center;
}

.d2-news-empty .fa { margin-bottom: 15px; color: var(--d2-jade); font-size: 21px; }
.d2-news-empty strong { color: #dfe8e6; font-family: EasonPro, Georgia, serif; font-size: 22px; }
.d2-news-empty p { max-width: 280px; margin: 8px 0 0; color: #859992; }
.d2-news-placeholder { display: flex; gap: 8px; justify-content: center; }
.d2-news-placeholder span { width: 34px; height: 2px; background: rgba(88, 231, 197, .19); }
.d2-news-placeholder span:first-child { background: var(--d2-jade); }

.d2-ranking-wrap { position: relative; z-index: 2; padding: 5px 18px 12px; }

.d2-ranking-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.d2-ranking-card th {
    height: 31px;
    border-bottom: 1px solid rgba(88, 231, 197, .55);
    color: #9cb1ac;
    font-family: EasonPro, Georgia, serif;
    font-size: 10px;
    font-weight: normal;
    letter-spacing: .7px;
    text-align: left;
    text-transform: uppercase;
}

.d2-ranking-card td {
    height: 25px;
    border-bottom: 1px solid rgba(137, 164, 157, .16);
    color: #c0ccc9;
    white-space: nowrap;
}

.d2-ranking-card th:first-child,
.d2-ranking-card td:first-child { width: 26px; text-align: center; }
.d2-ranking-card th:nth-child(3),
.d2-ranking-card td:nth-child(3) { width: 45px; text-align: center; }
.d2-ranking-card th:last-child,
.d2-ranking-card td:last-child { text-align: right; }
.d2-ranking-card tbody tr:first-child td { color: #e4c97d; }
.d2-ranking-card tbody tr:nth-child(2) td { color: #dce4e2; }
.d2-ranking-card tbody tr:nth-child(3) td { color: #c99272; }

.d2-rank-crown {
    display: inline-block;
    color: #ebc552;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1;
    text-shadow: 0 0 8px rgba(235, 197, 82, .2);
}

.d2-ranking-card tbody tr:nth-child(2) .d2-rank-crown { color: #d8e1df; }
.d2-ranking-card tbody tr:nth-child(3) .d2-rank-crown { color: #c47b59; }

.d2-download-card {
    display: flex;
    flex-direction: column;
}

.d2-download-art {
    position: relative;
    flex: 1;
    min-height: 169px;
    margin: 0 5px;
    border-bottom: 1px solid rgba(135, 163, 156, .2);
    background:
        radial-gradient(circle at 50% 48%, rgba(68, 223, 185, .17), transparent 34%),
        linear-gradient(180deg, rgba(5, 13, 12, .08), rgba(1, 7, 6, .8)),
        url(../images/site/dark2-hero-reference.png) 82% 46% / cover;
}

.d2-download-art img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    height: 170px;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .8)) drop-shadow(0 0 12px rgba(52, 220, 180, .16));
    transform: translate(-50%, -50%);
}
.d2-download-card > p { position: relative; z-index: 2; margin: 10px 20px 8px; color: #b4c1bd; font-size: 13px; line-height: 1.35; text-align: center; }

.d2-download-button {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    margin: 0 22px 17px;
    border: 1px solid rgba(154, 193, 184, .66);
    color: #eafffa !important;
    background:
        radial-gradient(ellipse at 50% 0, rgba(42, 195, 160, .23), transparent 62%),
        linear-gradient(180deg, rgba(8, 81, 68, .92), rgba(2, 27, 23, .98));
    box-shadow: inset 0 0 0 3px rgba(0, 13, 11, .85), inset 0 0 0 4px rgba(119, 220, 196, .22), inset 0 1px rgba(255, 255, 255, .1), 0 0 20px rgba(46, 219, 178, .13);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    font-family: EasonPro, Georgia, serif;
    font-size: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.d2-download-button .fa { margin-right: 10px; }
.d2-download-button:hover { background: linear-gradient(180deg, #16977d, #075a4a); }

@media (min-width: 1121px) and (max-width: 1399px) {
    .d2-dashboard-main { padding-right: 24px; padding-left: 24px; }
    .d2-home-dashboard { gap: 8px; }
    .d2-card-title { padding-right: 11px; padding-left: 11px; }
    .d2-card-title h2 { font-size: 16px; letter-spacing: .7px; }
    .d2-card-title > .fa { margin-right: 7px; font-size: 16px; }
    .d2-card-title > a { margin-left: 5px; font-size: 9px; letter-spacing: .15px; }
    .d2-card-title > a span { font-size: 14px; }
    .d2-status-dot { width: 12px; height: 12px; margin-right: 9px; }
    .d2-status-list { padding-right: 14px; padding-left: 14px; }
    .d2-status-list dt,
    .d2-status-list dd { font-size: 12px; }
    .d2-news-list { padding-right: 14px; padding-left: 14px; }
    .d2-news-item { grid-template-columns: 90px minmax(0, 1fr); gap: 12px; }
    .d2-news-item strong { font-size: 15px; }
    .d2-ranking-wrap { padding-right: 12px; padding-left: 12px; }
    .d2-download-card > p { margin-right: 14px; margin-left: 14px; font-size: 12px; }
    .d2-download-button { margin-right: 17px; margin-left: 17px; font-size: 16px; }
}

.d2-content-card,
.d2-sidebar .widget {
    position: relative;
    border: 1px solid var(--d2-line);
    border-top-color: rgba(196, 232, 223, .4);
    color: #cbd7d4;
    background:
        linear-gradient(135deg, rgba(105, 200, 176, .035), transparent 30%),
        linear-gradient(180deg, rgba(9, 19, 17, .97), rgba(3, 9, 8, .98));
    box-shadow: var(--d2-shadow), inset 0 1px rgba(255, 255, 255, .025);
}

.d2-content-card::before,
.d2-content-card::after,
.d2-sidebar .widget::before,
.d2-sidebar .widget::after {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--d2-jade-deep);
    content: "";
    pointer-events: none;
}

.d2-content-card::before,
.d2-sidebar .widget::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.d2-content-card::after,
.d2-sidebar .widget::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid;
    border-bottom: 2px solid;
}

.d2-content-card {
    min-width: 0;
    padding: 34px 38px 42px;
}

.d2-content-card > .container,
.d2-content-card > .mt2cms2-c-l,
.d2-content-card .container,
.d2-content-card .mt2cms2-c-l {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.d2-content-card .row {
    margin-right: 0;
    margin-left: 0;
}

.d2-content-card [class*="col-"] {
    max-width: 100%;
    margin-left: 0;
}

.d2-content-card .page-hd {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88px;
    height: auto;
    margin: 0 0 28px;
    padding: 0 0 18px;
    background-image: none !important;
}

.d2-content-card .page-hd::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, var(--d2-jade-deep), rgba(88, 231, 197, .28) 42%, transparent);
    content: "";
}

.d2-content-card .page-hd::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 9px;
    height: 9px;
    border: 1px solid var(--d2-jade);
    background: #07110f;
    content: "";
    transform: rotate(45deg);
}

.d2-content-card .page-hd .bd-c { padding: 0; }

.d2-content-card .page-hd h2 {
    width: auto;
    margin: 0;
    color: #e6ecea;
    font-family: EasonProDisplayCaps, EasonPro, Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(93, 226, 193, .11);
}

.d2-content-card .page-hd h6 {
    margin: 10px 0 0;
    color: var(--d2-jade);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.d2-content-card h3,
.d2-content-card h4,
.d2-content-card h5 {
    color: #e0e8e6;
}

.d2-content-card p { color: #adbbb7; }

.d2-content-card hr,
.d2-sidebar hr {
    height: 1px;
    margin: 18px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--d2-line), transparent);
}

.d2-content-card .blogroll {
    margin: 0;
    padding: 0;
}

.d2-content-card .blog-post {
    position: relative;
    margin: 0 0 18px;
    padding: 23px 24px 24px;
    border: 1px solid rgba(126, 177, 165, .16);
    background: rgba(255, 255, 255, .018);
}

.d2-content-card .blog-post:hover {
    border-color: rgba(88, 231, 197, .32);
    background: rgba(83, 197, 170, .035);
}

.d2-content-card .blog-post h3,
.d2-content-card .blog-post h3 a {
    color: #e1e9e7;
    font-size: 28px;
}

.d2-content-card .blog-post .more a,
.d2-content-card .blogroll .more a { color: var(--d2-jade); }

.d2-sidebar > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.d2-sidebar .widget-container {
    margin: 0 0 22px;
    list-style: none;
}

.d2-sidebar .widget {
    width: 100%;
    min-height: 0;
    overflow: visible;
    background:
        linear-gradient(135deg, rgba(105, 200, 176, .04), transparent 45%),
        linear-gradient(180deg, rgba(9, 19, 17, .98), rgba(3, 9, 8, .98)) !important;
    background-size: auto !important;
}

.d2-sidebar .widget .bd { padding: 0 20px 22px; }

.d2-sidebar .top-sidebar {
    margin: 0 -20px 18px;
    padding: 17px 20px 14px;
    border-bottom: 1px solid var(--d2-line);
    color: #dce6e3;
    text-align: left;
    background: linear-gradient(90deg, rgba(25, 110, 91, .18), transparent);
}

.d2-sidebar .top-sidebar h4 {
    margin: 0;
    color: #dfe9e6;
    font-family: EasonPro, Georgia, serif;
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase !important;
}

.d2-site .table {
    width: 100%;
    margin-bottom: 20px;
    color: #bdcbc7;
    background: transparent;
}

.d2-site .table thead th,
.d2-site .thead-inverse th {
    border: 0;
    border-bottom: 1px solid var(--d2-line-strong);
    color: #dfe8e5;
    background: rgba(3, 10, 9, .88) !important;
    font-family: EasonPro, Georgia, serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.d2-site .table th,
.d2-site .table td {
    padding: 11px 13px;
    border-top: 1px solid rgba(138, 182, 171, .11);
    vertical-align: middle;
}

.d2-site .table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .017); }
.d2-site .table-hover tbody tr:hover { color: #effffb; background: rgba(65, 186, 157, .08); }

.d2-page-players .d2-content-card .table tbody tr:first-child {
    color: #f0d58f;
    background: linear-gradient(90deg, rgba(183, 145, 59, .12), transparent);
}

.d2-page-players .d2-content-card .table tbody tr:nth-child(2) { color: #dce4e2; }
.d2-page-players .d2-content-card .table tbody tr:nth-child(3) { color: #c8906d; }

.d2-site .form-control,
.d2-site select.form-control,
.d2-site textarea.form-control {
    min-height: 46px;
    border: 1px solid rgba(130, 178, 166, .3);
    border-radius: 2px;
    color: #dce7e4;
    background: rgba(0, 7, 6, .82);
    box-shadow: inset 0 1px 10px rgba(0, 0, 0, .4);
}

.d2-site .form-control:focus {
    border-color: var(--d2-jade);
    color: #effffb;
    background: rgba(1, 12, 10, .96);
    box-shadow: 0 0 0 3px rgba(88, 231, 197, .1), inset 0 1px 10px rgba(0, 0, 0, .35);
}

.d2-site .form-control::placeholder { color: #63766f; }

.d2-site .jumbotron {
    border: 1px solid var(--d2-line);
    border-radius: 2px;
    background: rgba(66, 135, 118, .055);
}

.d2-site .btn {
    min-height: 38px;
    border: 1px solid rgba(90, 225, 193, .5);
    border-radius: 2px;
    color: #e8fffa;
    background: linear-gradient(180deg, #116e5c, #074338);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 6px 18px rgba(0, 0, 0, .25);
    font-family: EasonPro, Georgia, serif;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.d2-site .btn:hover,
.d2-site .btn:focus {
    border-color: var(--d2-jade-bright);
    color: #fff;
    background: linear-gradient(180deg, #189b80, #075648);
    transform: translateY(-1px);
}

.d2-site .btn[disabled],
.d2-site .btn.disabled {
    border-color: rgba(144, 163, 158, .25);
    color: #778680;
    background: #14201d;
    opacity: .75;
}

.d2-site .btn-danger { border-color: rgba(88, 231, 197, .5); background: linear-gradient(180deg, #116e5c, #074338); }
.d2-site .btn-success { border-color: rgba(88, 231, 197, .5); background: linear-gradient(180deg, #16846e, #07483c); }

.d2-site .alert {
    border: 1px solid rgba(112, 196, 175, .28);
    border-radius: 2px;
    color: #bdd2cc;
    background: rgba(29, 105, 87, .12);
}

.d2-site .alert-info { color: #b9ddd4; background: rgba(44, 136, 113, .12); }
.d2-site .alert-danger { border-color: rgba(218, 91, 91, .35); color: #e4b8b8; background: rgba(139, 38, 38, .16); }
.d2-site .alert-success { border-color: rgba(83, 215, 155, .35); color: #b9e5d0; background: rgba(31, 130, 88, .16); }

.d2-site small { color: var(--d2-muted); }

.d2-loading-indicator {
    padding: 32px;
    color: var(--d2-jade);
    font-size: 34px;
    text-align: center;
    text-shadow: 0 0 18px rgba(88, 231, 197, .32);
}

.d2-sidebar .table { margin-bottom: 14px; font-size: 14px; }
.d2-sidebar .table th,
.d2-sidebar .table td { padding: 8px 6px; }
.d2-sidebar .table thead th { font-size: 11px; }

.d2-sidebar center { text-align: left; }

.d2-footer {
    position: relative;
    overflow: hidden;
    min-height: 82px;
    padding: 26px 24px 18px;
    border-top: 1px solid rgba(110, 185, 166, .13);
    color: var(--d2-muted);
    background:
        linear-gradient(180deg, rgba(1, 6, 5, .78), rgba(1, 5, 4, .28)),
        url(../images/site/dark2-hero-reference.png) center bottom / cover,
        #020504;
    text-align: center;
}

.d2-footer-ornament {
    position: absolute;
    top: -8px;
    left: 50%;
    width: min(740px, 80vw);
    height: 16px;
    transform: translateX(-50%);
}

.d2-footer-ornament::before,
.d2-footer-ornament::after {
    position: absolute;
    top: 7px;
    width: calc(50% - 18px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--d2-jade-deep));
    content: "";
}

.d2-footer-ornament::before { left: 0; }
.d2-footer-ornament::after { right: 0; transform: scaleX(-1); }

.d2-footer-ornament span {
    position: absolute;
    top: 1px;
    left: calc(50% - 7px);
    width: 14px;
    height: 14px;
    border: 1px solid var(--d2-jade);
    background: #04110e;
    transform: rotate(45deg);
}

.d2-footer-inner { width: min(1140px, 100%); margin: 0 auto; }
.d2-footer-logo { justify-content: center; min-width: 0; margin: 0 auto 10px; font-size: 28px; }
.d2-footer p { margin: 4px 0; color: var(--d2-muted); letter-spacing: 1px; }
.d2-footer .d2-copyright { margin-top: 18px; font-size: 12px; }

.d2-home .d2-footer-logo,
.d2-home .d2-copyright { display: none; }

.d2-home .d2-footer p {
    margin: 0;
    color: #9baea9;
    font-family: EasonPro, Georgia, serif;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.d2-home .d2-footer { flex: 1 0 auto; }

@media (min-width: 1600px) {
    .d2-hero {
        height: 620px;
        min-height: 620px;
        max-height: none;
    }

    .d2-hero-content {
        width: min(900px, calc(100% - 60px));
        margin-top: 72px;
    }

    .d2-hero-logo { width: min(700px, 88vw); }
    .d2-hero-side { top: 410px; }
    .d2-hero-side-left { left: max(40px, calc(50% - 650px)); }
    .d2-hero-side-right { right: max(40px, calc(50% - 650px)); }

    .d2-home .d2-dashboard-main {
        margin-top: -36px;
        padding-right: 3vw;
        padding-bottom: 14px;
        padding-left: 3vw;
    }

    .d2-home-dashboard {
        width: min(2440px, 94vw);
        gap: 14px;
    }

    .d2-dashboard-card {
        height: 430px;
        min-height: 430px;
    }

    .d2-card-title { min-height: 64px; }
    .d2-card-title h2 { font-size: 23px; }
    .d2-status-list { padding: 12px 24px 7px; }
    .d2-status-list > div { min-height: 38px; }
    .d2-status-list dt,
    .d2-status-list dd { font-size: 15px; }
    .d2-news-item { min-height: 113px; }
    .d2-news-thumb { min-height: 85px; }
    .d2-ranking-card td { height: 30px; font-size: 13px; }
    .d2-download-art img { height: 210px; }
    .d2-home .d2-footer { min-height: 116px; padding-top: 38px; }
}

@media (min-width: 2400px) {
    .d2-hero {
        height: min(720px, 50vh);
        min-height: min(720px, 50vh);
    }

    .d2-home-dashboard { width: min(2740px, 94vw); }
    .d2-dashboard-card { height: 470px; min-height: 470px; }
    .d2-card-title { min-height: 70px; }
    .d2-card-title h2 { font-size: 25px; }
    .d2-status-list > div { min-height: 42px; }
    .d2-news-item { min-height: 126px; }
    .d2-ranking-card td { height: 33px; font-size: 14px; }
    .d2-download-art img { height: 235px; }
}

.d2-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.d2-social li { display: inline-block; }

.d2-site .wp-pagenavi {
    margin: 28px 0 0;
    padding: 0;
    background: none;
}

.d2-site .wp-pagenavi a,
.d2-site .wp-pagenavi .current {
    width: auto;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--d2-line);
    color: #aab9b5;
    background: #07100e;
    line-height: 34px;
}

.d2-site .wp-pagenavi .current { border-color: var(--d2-jade); color: var(--d2-jade-bright); }

@media (max-width: 1120px) {
    .d2-header { padding-right: 18px; padding-left: 18px; }
    .d2-nav-shell { padding: 0 20px; }
    .d2-wordmark { min-width: 150px; font-size: 29px; }
    .d2-nav-link { padding: 0 12px; font-size: 13px; }
    .d2-language { min-width: 88px; }
    .d2-content-shell { grid-template-columns: minmax(0, 1fr) 310px; }
    .d2-home-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .d2-header { padding: 12px 12px 0; }
    .d2-nav-shell { min-height: 60px; padding: 0 16px; clip-path: none; }
    .d2-nav-shell::before,
    .d2-nav-shell::after { display: none; }
    .d2-wordmark { min-width: 0; margin-right: auto; font-size: 28px; }
    .d2-menu-toggle { display: block; }
    .d2-language { min-width: auto; margin-left: 14px; }
    .d2-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--d2-line);
        background: rgba(2, 8, 7, .98);
        box-shadow: 0 24px 36px rgba(0, 0, 0, .55);
    }
    .d2-navigation.is-open { display: flex; }
    .d2-nav-link { min-height: 48px; padding: 0 16px; }
    .d2-nav-link::after { right: 16px; left: 16px; }
    .d2-nav-login { margin-left: 0; border-top: 1px solid var(--d2-line); border-left: 0; }
    .d2-hero { height: 640px; min-height: 640px; max-height: none; background-position: 52% center; }
    .d2-hero-content { margin-top: 32px; }
    .d2-content-shell { grid-template-columns: 1fr; }
    .d2-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .d2-sidebar > ul { display: contents; }
    .d2-sidebar .widget-container { margin: 0; }
    .d2-home .d2-dashboard-main { margin-top: -36px; }
}

@media (max-width: 640px) {
    body.d2-site { font-size: 15px; }
    .d2-header { padding: 0; }
    .d2-nav-shell { border-right: 0; border-left: 0; }
    .d2-language { gap: 7px; margin-left: 8px; font-size: 12px; }
    .d2-hero { height: 620px; min-height: 620px; background-position: 54% center; }
    .d2-hero::before { background: linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(2, 6, 5, .9)); }
    .d2-hero-content { width: calc(100% - 30px); margin-top: 24px; }
    .d2-hero-logo { font-size: clamp(62px, 22vw, 92px); letter-spacing: 4px; }
    .d2-hero-kicker { margin-top: 14px; font-size: 14px; letter-spacing: .19em; }
    .d2-hero-copy { margin: 16px auto 24px; font-size: 16px; }
    .d2-primary-cta { min-width: min(320px, 94vw); min-height: 58px; font-size: 20px; }
    .d2-hero-features { flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
    .d2-inner-hero { height: 270px; }
    .d2-inner-emblem { top: 110px; font-size: 48px; }
    .d2-main { padding: 0 10px 60px; }
    .d2-home .d2-main { margin-top: -54px; }
    .d2-site:not(.d2-home) .d2-main { margin-top: -45px; }
    .d2-content-card { padding: 24px 15px 30px; }
    .d2-content-card .page-hd { min-height: 70px; margin-bottom: 20px; }
    .d2-content-card .page-hd h2 { font-size: 34px; }
    .d2-sidebar { display: block; }
    .d2-sidebar .widget-container { margin-bottom: 16px; }
    .d2-site .table { display: block; overflow-x: auto; white-space: nowrap; }
    .d2-site .table th,
    .d2-site .table td { padding: 9px 10px; }
    .d2-content-card .blog-post { padding: 18px 16px; }
    .d2-content-card .blog-post h3,
    .d2-content-card .blog-post h3 a { font-size: 23px; }
    .d2-dashboard-main { padding-right: 10px; padding-left: 10px; }
    .d2-home-dashboard { grid-template-columns: 1fr; gap: 12px; }
    .d2-dashboard-card { min-height: 350px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
