.cdn-ayea{
    width: 1082px;
    /* padding: 47px 0 78px; */
    margin: 0 auto;
}

.cdn-header{
    width: 100%;
    height: 420px;
    padding-top: 80px;
    background: url(/web/default/assets/customization/cdnImg/cdnbg.svg) ;
    background-position: 50% 211px;
    background-repeat: no-repeat;
    background-size: 3010px;
}
.header-desc{
    display: flex;
    justify-content: space-between;
}

.header-title{
    width: 530px;
}

.header-title h1{
    color: #282e3e;
    font-size: 40px;
    line-height: 56px;
    font-weight: 700;
    margin: 0;
}

.header-title p{
    color: #5b6786;
    line-height: 20px;
    font-size: 14px;
    margin-top: 20px;
}

.header-title .header-Btn{
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 16px;
}

.header-title .header-Btn a{
    padding: 0 15px;
    font-size: 14px;
    text-decoration: none;
    line-height: 32px;
    border-radius: 4px;
}

.header-Btn a:nth-child(3)::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 1px;
    border-top: 2px solid #282e3e;
    border-right: 2px solid #282e3e;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* 只有第三个按钮 hover 时，文字和图标都变蓝色 */
.header-Btn a:nth-child(3):hover {
    color: #0063ff !important;
}

.header-Btn a:nth-child(3):hover::after {
    border-color: #0063ff !important;
}

.header-img img{
    width: 480px;
    height: 420px;
}


.cdn-ayea {
    width: 1082px;
    margin: 0 auto;
}

.section-title {
    color: #282e3e;
    font-size: 28px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    color: #5b6786;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-top: 10px;
}

.section-advantages {
    padding: 45px 0;
    /* background-color: #f5f7fa; */
}
.advantages-list {
    display: flex;
    justify-content: space-between;
    margin-top: 57px;
}

.advantage-item {
    width: 220px;
    text-align: center;
}
.advantage-item div{
    width: 100%;
    text-align: left;
}

.advantage-item img{
    width: 57px;
}

.advantage-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #282e3e;
    line-height: 22px;
    margin-top: 17px;
}

.advantage-item p {
    font-size: 14px;
    color: #5b6786;
    line-height: 20px;
    margin-top: 17px;
}

.section-features {
    padding: 45px 0;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 49px;
}

.feature-item {
    width: 50%;
    display: flex;
}

.feature-item img{
    width: 48px;
    height: 48px;
}

.feature-item:nth-child(n+3) {
    margin-top: 61px;
}

.feature-text {
    flex: 1;
    margin-left: 23px;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #282e3e;
    line-height: 22px;
}

.feature-text p {
    font-size: 14px;
    color: #5b6786;
    line-height: 20px;
    margin-top: 16px;
    margin-right: 45px;
}

.section-scenarios {
    padding: 45px 0;
    /* background-color: #f5f7fa; */
}

.scenarios-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 54px;
}

.scenario-card-lg {
    width: 349px;
    height: 288px;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(312deg, #6b81ff00, #0c0e27cc);
    position: relative;
}

.scenario-col {
    width: 349px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scenario-col .scenario-card {
    height: 135px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(312deg, #6b81ff00, #0c0e27cc);
    position: relative;
}

.scenario-card .scenario-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: -1;
}

.scenario-card:hover .scenario-img {
    transform: scale(1.1); /* 放大比例，可调整 */
}

.scenario-content {
    padding: 30px 26px;
    height: 100%;
    opacity: .8;
}

.scenario-col .scenario-content {
    padding: 15px 20px 20px;
}

.scenario-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 22px;
}

.scenario-content p {
    font-size: 12px;
    color: #fff;
    line-height: 17px;
    margin-top: 11px;
    width: 310px;
}

.scenario-col .scenario-content p {
    margin-top: 8px;
}

/* ========== Pricing Plan ========== */
.pricing-plan {
    padding: 56px 0;
    background-color: #ffffff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header-title {
    font-size: 28px;
    font-weight: 700;
    color: #282e3e;
    line-height: 40px;
}

.pricing-header-gradient {
    background: linear-gradient(135deg, #2478f5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header-desc {
    color: #5b6786;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.pricing-grid {
    max-width: 1082px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pricing-plan {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .pricing-plan {
        padding: 96px 0;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card-body {
    padding: 20px;
}

@media (min-width: 640px) {
    .pricing-card-body {
        padding: 32px;
    }
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #282e3e;
    margin-bottom: 8px;
}

.pricing-card-price {
    font-size: 36px;
    font-weight: 700;
    color: #2478f5;
    margin-bottom: 8px;
}

.pricing-card-price-gradient {
    background: linear-gradient(135deg, #2478f5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-period {
    color: #5b6786;
    font-size: 16px;
}

.pricing-card-usdt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 12px;
    background: linear-gradient(to right, #ecfdf5, #eff6ff, #f5f3ff);
    border-radius: 12px;
    border: 1px solid #a7f3d0;
    transition: all 0.3s ease;
}

.pricing-card-usdt:hover {
    border-color: #6ee7b7;
}

.pricing-card-usdt-featured {
    background: linear-gradient(to right, #d1fae5, #dbeafe, #ede9fe);
    border-width: 2px;
    border-color: #6ee7b7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card-usdt-featured:hover {
    border-color: #34d399;
}

.pricing-card-usdt-custom {
    background: linear-gradient(to right, #fffbeb, #ecfdf5, #eff6ff);
    border-width: 2px;
    border-color: #fcd34d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card-usdt-custom:hover {
    border-color: #fbbf24;
}

.pricing-card-usdt-icon {
    width: 28px;
    height: 28px;
    color: #10b981;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

.pricing-card-usdt-icon-lg {
    width: 32px;
    height: 32px;
}

.pricing-card-usdt-text {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(to right, #059669, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 14px;
    line-height: 20px;
}

.pricing-card-features li + li {
    margin-top: 12px;
}

.pricing-card-features li .fa-check {
    color: #2478f5;
    margin-right: 12px;
    font-size: 14px;
}

.pricing-card-btn {
    width: 100%;
    padding: 12px 0;
    border: 1px solid #2478f5;
    color: #2478f5;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card-btn:hover {
    background-color: #2478f5;
    color: #fff;
}

.pricing-card-btn-primary {
    background: linear-gradient(to right, #2478f5, #7c3aed);
    color: #fff;
    border: none;
}

.pricing-card-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(36, 120, 245, 0.25);
    background: linear-gradient(to right, #2478f5, #7c3aed);
}

.pricing-card-btn-custom {
    background: linear-gradient(to right, #7c3aed, #f59e0b);
    color: #fff;
    border: none;
}

.pricing-card-btn-custom:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
    background: linear-gradient(to right, #7c3aed, #f59e0b);
}

/* Featured card (Advanced Edition) */
.pricing-card-featured {
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, #2478f5, #7c3aed);
    padding: 2px;
    transform: scale(1.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured:hover {
    transform: scale(1.1);
}

.pricing-card-body-featured {
    background: #fff;
    border-radius: 10px;
    flex: 1;
}

.pricing-card-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #2478f5, #7c3aed);
    color: #fff;
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1;
}


/* Custom card */
.pricing-card-custom {
    border: none;
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #f59e0b);
    padding: 2px;
    display: flex;
    flex-direction: column;
}

.pricing-card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card-body-custom {
    background: #fff;
    border-radius: 10px;
    flex: 1;
}

/* ========== CDN Threat Hub ========== */
.cdn-threat-hub {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 66px 0 64px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 50% 18%, rgba(29, 78, 216, 0.10), transparent 34%),
        radial-gradient(circle at 18% 44%, rgba(14, 165, 233, 0.08), transparent 30%),
        linear-gradient(180deg, #03050a 0%, #02040a 52%, #04050a 100%);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.cdn-threat-hub,
.cdn-threat-hub * {
    box-sizing: border-box;
}

.cdn-threat-hub::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.028) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.56;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}

.cdn-threat-hub::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 190px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
    pointer-events: none;
}

.cdn-threat-shell {
    position: relative;
    z-index: 1;
    width: min(1082px, calc(100% - 32px));
    margin: 0 auto;
}

.cdn-threat-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cdn-threat-kicker,
.cdn-threat-defcon-pill,
.cdn-threat-panel-label {
    font-family: Consolas, "Courier New", monospace;
}

.cdn-threat-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 28px;
    padding: 0 16px;
    border: 1px solid rgba(59, 130, 246, 0.32);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.64);
    color: #68a8ff;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cdn-threat-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.75);
}

.cdn-threat-heading h2 {
    max-width: 100%;
    margin: 15px 0 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 48px;
    font-weight: 800;
    letter-spacing: 0;
    overflow-wrap: break-word;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
}

.cdn-threat-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, #4aa3ff 0%, #b65cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.cdn-threat-heading p {
    width: 100%;
    max-width: 790px;
    margin: 14px 0 0;
    color: rgba(177, 184, 196, 0.82);
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}

.cdn-threat-defcon {
    --defcon-color: #ff7a0a;
    --defcon-rgb: 255, 122, 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.cdn-threat-defcon.is-critical {
    --defcon-color: #ff335b;
    --defcon-rgb: 255, 51, 91;
}

.cdn-threat-defcon.is-elevated {
    --defcon-color: #ff7a0a;
    --defcon-rgb: 255, 122, 10;
}

.cdn-threat-defcon.is-guarded {
    --defcon-color: #facc15;
    --defcon-rgb: 250, 204, 21;
}

.cdn-threat-defcon.is-watch {
    --defcon-color: #3b82f6;
    --defcon-rgb: 59, 130, 246;
}

.cdn-threat-defcon.is-normal {
    --defcon-color: #19d3aa;
    --defcon-rgb: 25, 211, 170;
}

.cdn-threat-defcon-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(var(--defcon-rgb), 0.42);
    border-radius: 8px;
    background: rgba(var(--defcon-rgb), 0.14);
    color: color-mix(in srgb, var(--defcon-color) 72%, #ffffff);
    box-shadow: 0 0 28px rgba(var(--defcon-rgb), 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    animation: cdnThreatDefconGlow 2.8s ease-in-out infinite;
    transition: color 0.38s ease, background-color 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
}

.cdn-threat-defcon.is-switching .cdn-threat-defcon-pill {
    animation: cdnThreatDefconSwap 0.52s ease-out both, cdnThreatDefconGlow 2.8s ease-in-out infinite;
}

.cdn-threat-defcon-pill i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--defcon-color) 62%, #ffffff);
    box-shadow: 0 0 14px rgba(var(--defcon-rgb), 0.86);
    transition: background-color 0.38s ease, box-shadow 0.38s ease;
}

.cdn-threat-defcon-pill strong {
    color: color-mix(in srgb, var(--defcon-color) 30%, #ffffff);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
    transition: color 0.38s ease;
}

.cdn-threat-defcon-pill em {
    color: color-mix(in srgb, var(--defcon-color) 20%, #ffffff);
    font-style: normal;
    letter-spacing: 0.5px;
    transition: color 0.38s ease;
}

.cdn-threat-defcon-track {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cdn-threat-defcon-segment {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    transition: background-color 0.38s ease, box-shadow 0.38s ease, opacity 0.38s ease, transform 0.38s ease;
}

.cdn-threat-defcon-segment.is-active {
    background: var(--defcon-color);
    box-shadow: 0 0 18px rgba(var(--defcon-rgb), 0.86);
    transform: scaleX(1.08);
    animation: cdnThreatPulse 1.7s ease-in-out infinite;
}

.cdn-threat-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(420px, 1fr);
    gap: 20px;
    margin-top: 34px;
    align-items: start;
}

.cdn-threat-console,
.cdn-threat-terminal {
    min-width: 0;
}

.cdn-threat-panel-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 22px;
    margin-bottom: 8px;
    color: rgba(96, 165, 250, 0.62);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cdn-threat-panel-label span:last-child {
    color: rgba(156, 163, 175, 0.48);
}

.cdn-threat-radar-screen,
.cdn-threat-log-window {
    position: relative;
    height: 360px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(3, 8, 15, 0.98), rgba(1, 5, 10, 0.98));
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.04), 0 22px 64px rgba(0, 0, 0, 0.32);
}

.cdn-threat-radar-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
    pointer-events: none;
    animation: cdnThreatPanelScan 10s linear infinite;
}

.cdn-threat-radar-screen::after,
.cdn-threat-log-list::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 68px;
    background: linear-gradient(180deg, transparent, rgba(1, 5, 10, 0.92));
    pointer-events: none;
}

.cdn-threat-corner {
    position: absolute;
    z-index: 5;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.cdn-threat-corner-tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid rgba(96, 165, 250, 0.78);
    border-left: 2px solid rgba(96, 165, 250, 0.78);
}

.cdn-threat-corner-br {
    right: 10px;
    bottom: 10px;
    border-right: 2px solid rgba(96, 165, 250, 0.78);
    border-bottom: 2px solid rgba(96, 165, 250, 0.78);
}

.cdn-threat-radar-readout,
.cdn-threat-radar-state {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 8px;
    font-family: Consolas, "Courier New", monospace;
    color: rgba(96, 165, 250, 0.72);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cdn-threat-radar-readout {
    top: 20px;
    left: 20px;
}

.cdn-threat-radar-state {
    top: 20px;
    right: 20px;
    text-align: right;
}

.cdn-threat-radar-state i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #10d7a1;
    box-shadow: 0 0 12px rgba(16, 215, 161, 0.72);
    vertical-align: middle;
}

.cdn-threat-radar-svg {
    position: absolute;
    inset: 42px 34px 26px;
    width: calc(100% - 68px);
    height: calc(100% - 68px);
}

.cdn-threat-radar-svg text {
    fill: rgba(125, 176, 229, 0.66);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 3px;
}

.cdn-threat-radar-sweep {
    transform-origin: 0 0;
    animation: cdnThreatRadarSweep 8s linear infinite;
}

.cdn-threat-radar-footer {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 16px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: Consolas, "Courier New", monospace;
    color: rgba(125, 176, 229, 0.72);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cdn-threat-radar-footer strong {
    color: rgba(96, 165, 250, 0.72);
    font-weight: 700;
}

.cdn-threat-legend {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.cdn-threat-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.42);
}

.cdn-threat-legend i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cdn-threat-legend-red {
    background: #ff5b61;
    box-shadow: 0 0 10px rgba(255, 91, 97, 0.72);
}

.cdn-threat-legend-yellow {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.72);
}

.cdn-threat-legend-green {
    background: #10d7a1;
    box-shadow: 0 0 10px rgba(16, 215, 161, 0.72);
}

.cdn-threat-log-window {
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.98), rgba(3, 5, 10, 0.98));
}

.cdn-threat-log-window::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, 0.06) 48%, transparent 100%);
    background-size: 100% 110px;
    opacity: 0.35;
    pointer-events: none;
    animation: cdnThreatPanelScan 9s linear infinite;
}

.cdn-threat-log-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
    padding: 0 14px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(14, 18, 28, 0.78);
}

.cdn-threat-log-title {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
}

.cdn-threat-log-title strong {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.44);
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.cdn-threat-log-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cdn-threat-log-dot.red {
    background: #ef4444;
}

.cdn-threat-log-dot.yellow {
    background: #f59e0b;
}

.cdn-threat-log-dot.green {
    background: #10b981;
}

.cdn-threat-pause {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 24px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.60);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 700;
    cursor: default;
}

.cdn-threat-pause span {
    display: inline-block;
    width: 2px;
    height: 8px;
    background: currentColor;
}

.cdn-threat-log-list {
    position: relative;
    z-index: 2;
    height: 320px;
    overflow: hidden;
    padding: 8px 10px 12px;
    font-family: Consolas, "Courier New", monospace;
}

.cdn-threat-log-row {
    display: grid;
    grid-template-columns: 92px 78px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    margin-bottom: 7px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.028);
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1;
}

.cdn-threat-log-row:nth-child(n+8) {
    opacity: 0.55;
}

.cdn-threat-log-row.muted {
    opacity: 0.24;
}

.cdn-threat-log-row.is-new {
    animation: cdnThreatLogEnter 0.48s ease-out both;
}

.cdn-threat-log-time {
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.cdn-threat-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 5px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.cdn-threat-tag.red {
    border-color: rgba(248, 113, 113, 0.34);
    color: #fca5a5;
    background: rgba(127, 29, 29, 0.16);
}

.cdn-threat-tag.purple {
    border-color: rgba(192, 132, 252, 0.32);
    color: #d8b4fe;
    background: rgba(88, 28, 135, 0.16);
}

.cdn-threat-tag.yellow {
    border-color: rgba(251, 191, 36, 0.34);
    color: #facc15;
    background: rgba(113, 63, 18, 0.18);
}

.cdn-threat-tag.blue {
    border-color: rgba(96, 165, 250, 0.34);
    color: #93c5fd;
    background: rgba(30, 64, 175, 0.16);
}

.cdn-threat-log-path {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cdn-threat-log-path i {
    color: rgba(255, 255, 255, 0.28);
    font-style: normal;
}

.cdn-threat-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.cdn-threat-status-blocked {
    border-color: rgba(16, 185, 129, 0.28);
    background: rgba(6, 95, 70, 0.22);
    color: #34d399;
}

.cdn-threat-status-challenged {
    border-color: rgba(245, 158, 11, 0.30);
    background: rgba(146, 64, 14, 0.22);
    color: #fbbf24;
}

.cdn-threat-status-quarantined {
    border-color: rgba(192, 132, 252, 0.30);
    background: rgba(88, 28, 135, 0.22);
    color: #d8b4fe;
}

.cdn-threat-status-dropped {
    border-color: rgba(248, 113, 113, 0.30);
    background: rgba(127, 29, 29, 0.22);
    color: #fca5a5;
}

.cdn-threat-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.cdn-threat-metric-card {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 116px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 12px;
    background: rgba(3, 6, 12, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.22);
    transform: translateY(0);
    transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease, background-color 0.34s ease;
}

.cdn-threat-metric-card::after {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.05;
    filter: blur(18px);
    pointer-events: none;
    transition: opacity 0.34s ease, transform 0.34s ease;
}

.cdn-threat-metric-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at var(--threat-card-x, 50%) var(--threat-card-y, 50%), currentColor 0%, transparent 38%),
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.10) 38%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.08) 62%, transparent 100%);
    background-size: 100% 100%, 240% 100%;
    background-position: center, 160% 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.34s ease, background-position 0.62s ease;
}

.cdn-threat-card-glow {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    filter: blur(34px);
    transform: translate(78%, -70%);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.18s ease;
}

.cdn-threat-metric-card > :not(.cdn-threat-card-glow) {
    position: relative;
    z-index: 1;
}

.cdn-threat-metric-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, currentColor 58%, transparent);
    background-color: rgba(8, 13, 24, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px color-mix(in srgb, currentColor 22%, transparent);
}

.cdn-threat-metric-card:hover::before {
    opacity: 0.18;
    background-position: center, -80% 0;
    animation: cdnThreatMetricShine 1.35s ease-out both;
}

.cdn-threat-metric-card:hover::after {
    opacity: 0.12;
    transform: scale(1.12);
}

.cdn-threat-metric-card:hover .cdn-threat-card-glow {
    opacity: 0.18;
}

.cdn-threat-metric-card:hover .cdn-threat-metric-icon {
    border-color: color-mix(in srgb, currentColor 42%, rgba(255, 255, 255, 0.12));
    background: color-mix(in srgb, currentColor 16%, rgba(255, 255, 255, 0.045));
    box-shadow: 0 0 24px color-mix(in srgb, currentColor 28%, transparent);
    animation: cdnThreatMetricIconFloat 1.8s ease-in-out infinite;
}

.cdn-threat-metric-card:hover strong {
    color: #ffffff;
    text-shadow: 0 0 18px color-mix(in srgb, currentColor 34%, transparent);
}

.cdn-threat-metric-card:hover small i {
    box-shadow: 0 0 14px rgba(16, 215, 161, 0.82);
}

.cdn-threat-metric-blue {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.28);
}

.cdn-threat-metric-purple {
    color: #d946ef;
    border-color: rgba(217, 70, 239, 0.28);
}

.cdn-threat-metric-green {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.25);
}

.cdn-threat-metric-gold {
    color: #eab308;
    border-color: rgba(234, 179, 8, 0.26);
}

.cdn-threat-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.cdn-threat-metric-card .cdn-threat-metric-icon {
    color: inherit;
    line-height: 1;
}

.cdn-threat-metric-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cdn-threat-metric-card span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    line-height: 30px;
    min-width: 0;
}

.cdn-threat-metric-card strong {
    grid-column: 1 / -1;
    color: #f8fafc;
    font-family: Consolas, "Courier New", monospace;
    font-size: 28px;
    line-height: 32px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.cdn-threat-metric-card strong span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.cdn-threat-metric-card strong em {
    margin-left: 5px;
    color: currentColor;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.cdn-threat-metric-card small {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    line-height: 18px;
}

.cdn-threat-metric-card small i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10d7a1;
    animation: cdnThreatPulse 1.8s ease-in-out infinite;
}

.cdn-threat-radar-point {
    transform-box: fill-box;
    transform-origin: center;
    animation: cdnThreatPointPulse 1.4s ease-in-out infinite;
}

.cdn-threat-radar-point.blue {
    animation-delay: 0.2s;
}

.cdn-threat-radar-point.yellow {
    animation-delay: 0.45s;
}

/* ========== CDN Developer Trust ========== */
.cdn-devtrust {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 50px 0 58px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 50% 12%, rgba(96, 165, 250, 0.10), transparent 32%),
        radial-gradient(circle at 28% 78%, rgba(88, 28, 135, 0.20), transparent 32%),
        linear-gradient(180deg, #03050a 0%, #05040c 100%);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.cdn-devtrust,
.cdn-devtrust * {
    box-sizing: border-box;
}

.cdn-devtrust::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.026) 1px, transparent 1px);
    background-size: 66px 66px;
    opacity: 0.42;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
    pointer-events: none;
}

.cdn-devtrust::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(6, 4, 14, 0.72));
    pointer-events: none;
}

.cdn-devtrust-shell {
    width: min(1082px, calc(100% - 32px));
    margin: 0 auto;
}

.cdn-devtrust-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cdn-devtrust-kicker,
.cdn-devtrust-title span,
.cdn-devtrust-tabs,
.cdn-devtrust-code,
.cdn-devtrust-deploy,
.cdn-devtrust-cert,
.cdn-devtrust-cert-panel,
.cdn-devtrust-metrics {
    font-family: Consolas, "Courier New", monospace;
}

.cdn-devtrust-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 28px;
    padding: 0 16px;
    border: 1px solid rgba(96, 165, 250, 0.34);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.66);
    color: #8bbcff;
    font-size: 11px;
    letter-spacing: 3.4px;
    text-transform: uppercase;
}

.cdn-devtrust-kicker i,
.cdn-devtrust-audit i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.75);
}

.cdn-devtrust-heading h2 {
    max-width: 800px;
    margin: 12px 0 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    letter-spacing: 0;
    overflow-wrap: break-word;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.48);
}

.cdn-devtrust-heading p {
    max-width: 800px;
    margin: 10px 0 0;
    color: rgba(203, 213, 225, 0.72);
    font-size: 13px;
    line-height: 23px;
    font-weight: 600;
}

.cdn-devtrust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.cdn-devtrust-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    border-radius: 12px;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.14), transparent 30%),
        radial-gradient(circle at 98% 90%, rgba(168, 85, 247, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(9, 13, 24, 0.96), rgba(5, 7, 14, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.32);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    will-change: transform;
}

.cdn-devtrust-card:hover,
.cdn-devtrust-card.is-hovered {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 34px 90px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(96, 165, 250, 0.1);
}

.cdn-devtrust-compliance:hover,
.cdn-devtrust-compliance.is-hovered {
    border-color: rgba(192, 132, 252, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 34px 90px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(168, 85, 247, 0.12);
}

.cdn-devtrust-compliance {
    border-color: rgba(168, 85, 247, 0.18);
    background:
        radial-gradient(circle at 86% 24%, rgba(168, 85, 247, 0.18), transparent 36%),
        radial-gradient(circle at 68% 72%, rgba(234, 179, 8, 0.09), transparent 26%),
        linear-gradient(180deg, rgba(10, 7, 24, 0.98), rgba(5, 5, 12, 0.99));
}

.cdn-devtrust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.18;
    pointer-events: none;
    animation: cdnDevTrustScan 11s linear infinite;
}

.cdn-devtrust-card:hover::before,
.cdn-devtrust-card.is-hovered::before {
    opacity: 0.28;
}

.cdn-devtrust-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cdn-devtrust-title {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
}

.cdn-devtrust-title div {
    min-width: 0;
}

.cdn-devtrust-title span {
    display: block;
    color: rgba(147, 197, 253, 0.65);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 16px;
}

.cdn-devtrust-compliance .cdn-devtrust-title span {
    color: rgba(216, 180, 254, 0.72);
}

.cdn-devtrust-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 23px;
    font-weight: 800;
    letter-spacing: 0;
}

.cdn-devtrust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.cdn-devtrust-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cdn-devtrust-icon-blue {
    border: 1px solid rgba(96, 165, 250, 0.42);
    background: rgba(37, 99, 235, 0.16);
    color: #60a5fa;
}

.cdn-devtrust-icon-purple {
    border: 1px solid rgba(216, 180, 254, 0.42);
    background: rgba(147, 51, 234, 0.16);
    color: #d8b4fe;
}

.cdn-devtrust-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(3, 7, 18, 0.72);
}

.cdn-devtrust-tab {
    min-width: 60px;
    height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(203, 213, 225, 0.48);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cdn-devtrust-tab.is-active {
    color: #bfdbfe;
    background: rgba(30, 64, 175, 0.36);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.20), 0 0 18px rgba(37, 99, 235, 0.20);
}

.cdn-devtrust-code-window {
    position: relative;
    z-index: 2;
    height: 286px;
    min-height: 0;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 10px;
    background: rgba(3, 7, 18, 0.82);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.03);
}

.cdn-devtrust-code-window::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, 0.06) 48%, transparent 100%);
    background-size: 100% 95px;
    opacity: 0.25;
    pointer-events: none;
    animation: cdnDevTrustScan 8s linear infinite;
}

.cdn-devtrust-code-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 38px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(15, 23, 42, 0.74);
    color: rgba(148, 163, 184, 0.72);
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
}

.cdn-devtrust-code-head span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cdn-devtrust-code-head em,
.cdn-devtrust-audit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 22px;
    padding: 0 10px;
    border: 1px solid rgba(16, 185, 129, 0.26);
    border-radius: 999px;
    background: rgba(6, 95, 70, 0.30);
    color: #5eead4;
    font-style: normal;
    font-weight: 800;
}

.cdn-devtrust-code-head em i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10d7a1;
    box-shadow: 0 0 9px rgba(16, 215, 161, 0.85);
    animation: cdnDevTrustPulse 1.55s ease-in-out infinite;
}

.cdn-devtrust-window-dots {
    display: inline-flex;
    gap: 7px;
}

.cdn-devtrust-window-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cdn-devtrust-window-dots .red {
    background: #ef4444;
}

.cdn-devtrust-window-dots .yellow {
    background: #f59e0b;
}

.cdn-devtrust-window-dots .green {
    background: #10b981;
}

.cdn-devtrust-code {
    position: relative;
    z-index: 2;
    height: 248px;
    min-height: 0;
    margin: 0;
    padding: 14px 18px 16px;
    overflow: hidden;
    color: rgba(226, 232, 240, 0.90);
    font-size: 11px;
    line-height: 18px;
    background: transparent !important;
    tab-size: 2;
}

.cdn-devtrust-code code {
    display: block;
    background: transparent !important;
    color: inherit;
    font: inherit;
}

.cdn-devtrust-code .line {
    display: block;
    min-height: 18px;
    white-space: pre;
}

.cdn-devtrust-code.is-typing .line {
    opacity: 0;
    transform: translateY(5px);
    filter: blur(0.4px);
}

.cdn-devtrust-code .line.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: none;
}

.cdn-devtrust-code.is-typing .line.is-visible {
    animation: cdnDevTrustLineIn 0.34s ease-out both;
}

.cdn-devtrust-code.is-complete .line {
    opacity: 1;
    transform: translateY(0);
    filter: none;
}

.cdn-devtrust-code b {
    display: inline-block;
    width: 28px;
    margin-right: 12px;
    color: rgba(148, 163, 184, 0.34);
    font-weight: 700;
}

.cdn-devtrust-code em {
    font-style: normal;
}

.cdn-devtrust-code .kw {
    color: #f0abfc;
}

.cdn-devtrust-code .fn {
    color: #5eead4;
}

.cdn-devtrust-code .str {
    color: #fde68a;
}

.cdn-devtrust-code .sys {
    color: #bfdbfe;
}

.cdn-devtrust-code .note {
    color: #34d399;
}

.cdn-devtrust-code-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    margin-left: 3px;
    border-radius: 1px;
    background: #5eead4;
    box-shadow: 0 0 10px rgba(94, 234, 212, 0.55);
    vertical-align: -2px;
    animation: cdnDevTrustCursor 1s steps(2, end) infinite;
}

.cdn-devtrust-deploy {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.42);
}

.cdn-devtrust-deploy-head,
.cdn-devtrust-stages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cdn-devtrust-deploy-head span {
    display: block;
    color: rgba(148, 163, 184, 0.54);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cdn-devtrust-deploy-head strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.cdn-devtrust-deploy-head div:last-child {
    text-align: right;
}

.cdn-devtrust-deploy-head div:last-child strong {
    color: #5eead4;
    font-size: 15px;
}

.cdn-devtrust-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    height: 4px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: transparent;
}

.cdn-devtrust-progress-segment {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.12);
    transition: background-color 0.32s ease, box-shadow 0.32s ease;
}

.cdn-devtrust-progress-segment span {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--devtrust-progress-fill, 0%);
    min-width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #22d3ee 46%, #5eead4);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.42);
    transition: width 0.14s linear;
}

.cdn-devtrust-progress-segment span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    animation: cdnDevTrustProgressFill 1.35s linear infinite;
}

.cdn-devtrust-progress-segment.is-complete {
    background: rgba(20, 184, 166, 0.26);
    box-shadow: 0 0 14px rgba(20, 184, 166, 0.45);
}

.cdn-devtrust-progress-segment.is-active {
    background: rgba(96, 165, 250, 0.20);
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
}

.cdn-devtrust-stages {
    margin-top: 9px;
}

.cdn-devtrust-stage {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: rgba(148, 163, 184, 0.44);
    font-size: 10px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.cdn-devtrust-stage i {
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.36);
}

.cdn-devtrust-stage.is-active {
    color: #facc15;
}

.cdn-devtrust-stage.is-active i,
.cdn-devtrust-stage.is-complete i {
    background: #facc15;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.62);
}

.cdn-devtrust-stage.is-complete {
    color: #93c5fd;
}

.cdn-devtrust-stage.is-complete i {
    background: #60a5fa;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.62);
}

.cdn-devtrust-copy {
    position: relative;
    z-index: 2;
    margin-top: 16px;
}

.cdn-devtrust-copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
}

.cdn-devtrust-copy p {
    margin: 8px 0 0;
    color: rgba(203, 213, 225, 0.62);
    font-size: 12px;
    line-height: 21px;
    font-weight: 600;
}

.cdn-devtrust-audit {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    color: #5eead4;
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 1px;
    animation: cdnDevTrustPulse 2.2s ease-in-out infinite;
}

.cdn-devtrust-radar {
    position: relative;
    z-index: 2;
    height: 286px;
    margin-top: 14px;
}

.cdn-devtrust-radar-svg {
    position: absolute;
    inset: 0 34px 0;
    width: calc(100% - 68px);
    height: 100%;
}

.cdn-devtrust-radar-svg text {
    fill: rgba(226, 232, 240, 0.62);
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    letter-spacing: 2px;
}

.cdn-devtrust-radar-beam {
    transform-origin: 0 0;
    animation: cdnDevTrustBeam 9s linear infinite;
}

.cdn-devtrust-cert {
    --cert-rgb: 96, 165, 250;
    --cert-color: #93c5fd;
    position: absolute;
    z-index: 4;
    min-height: 24px;
    padding: 0 12px;
    border: 1px solid rgba(var(--cert-rgb), 0.32);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.78);
    color: var(--cert-color);
    cursor: pointer;
    font-size: 11px;
    line-height: 22px;
    white-space: nowrap;
    outline: none;
    user-select: none;
    transition: color 0.32s ease, border-color 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="amber"] {
    --cert-rgb: 250, 204, 21;
    --cert-color: #fde047;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="teal"] {
    --cert-rgb: 94, 234, 212;
    --cert-color: #5eead4;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="blue"] {
    --cert-rgb: 96, 165, 250;
    --cert-color: #93c5fd;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="yellow"] {
    --cert-rgb: 250, 204, 21;
    --cert-color: #facc15;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="violet"] {
    --cert-rgb: 196, 181, 253;
    --cert-color: #c4b5fd;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="pink"] {
    --cert-rgb: 240, 171, 252;
    --cert-color: #f0abfc;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="cyan"] {
    --cert-rgb: 34, 211, 238;
    --cert-color: #22d3ee;
}

.cdn-devtrust-cert[data-devtrust-cert-theme="orange"] {
    --cert-rgb: 251, 146, 60;
    --cert-color: #fb923c;
}

.cdn-devtrust-cert:hover,
.cdn-devtrust-cert:focus,
.cdn-devtrust-cert.is-hovered,
.cdn-devtrust-cert.is-active {
    color: var(--cert-color);
    border-color: rgba(var(--cert-rgb), 0.78);
    background: rgba(var(--cert-rgb), 0.17);
    box-shadow: 0 0 26px rgba(var(--cert-rgb), 0.28);
    transform: translateY(-2px);
}

.cdn-devtrust-cert.cert-a {
    top: 42px;
    left: 18%;
}

.cdn-devtrust-cert.cert-b {
    top: 52px;
    left: 44%;
}

.cdn-devtrust-cert.cert-c {
    top: 90px;
    right: 30%;
}

.cdn-devtrust-cert.cert-d {
    top: 132px;
    left: 25%;
}

.cdn-devtrust-cert.cert-e {
    top: 132px;
    right: 11%;
}

.cdn-devtrust-cert.cert-f {
    right: 30%;
    bottom: 70px;
}

.cdn-devtrust-cert.cert-g {
    bottom: 40px;
    left: 32%;
}

.cdn-devtrust-cert.cert-h {
    top: 82px;
    right: 1%;
}

.cdn-devtrust-cert-panel {
    --cert-rgb: 96, 165, 250;
    --cert-color: #93c5fd;
    position: absolute;
    z-index: 5;
    right: 30%;
    bottom: 22px;
    min-width: 180px;
    padding: 11px 16px;
    border: 1px solid rgba(var(--cert-rgb), 0.58);
    border-radius: 8px;
    background:
        radial-gradient(circle at 0 0, rgba(var(--cert-rgb), 0.18), transparent 42%),
        rgba(8, 16, 26, 0.95);
    box-shadow: 0 0 34px rgba(var(--cert-rgb), 0.20);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.cdn-devtrust-cert-panel::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cert-color);
    box-shadow: 0 0 12px rgba(var(--cert-rgb), 0.78);
}

.cdn-devtrust-cert-panel strong,
.cdn-devtrust-cert-panel span {
    display: block;
    padding-left: 18px;
}

.cdn-devtrust-cert-panel strong {
    color: var(--cert-color);
    font-size: 13px;
    line-height: 18px;
}

.cdn-devtrust-cert-panel span {
    margin-top: 2px;
    color: rgba(226, 232, 240, 0.66);
    font-size: 11px;
    line-height: 16px;
}

.cdn-devtrust-cert-panel.is-switching {
    animation: cdnDevTrustCertSwap 0.32s ease-out both;
}

.cdn-devtrust-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.38);
}

.cdn-devtrust-metrics div {
    min-width: 0;
    text-align: center;
}

.cdn-devtrust-metrics strong {
    display: block;
    color: #93c5fd;
    font-size: 15px;
    line-height: 20px;
}

.cdn-devtrust-metrics div:nth-child(2) strong {
    color: #5eead4;
}

.cdn-devtrust-metrics div:nth-child(3) strong {
    color: #fde047;
}

.cdn-devtrust-metrics div:nth-child(4) strong {
    color: #f0abfc;
}

.cdn-devtrust-metrics span {
    display: block;
    margin-top: 3px;
    color: rgba(203, 213, 225, 0.48);
    font-size: 11px;
    line-height: 16px;
}

.cdn-solutions {
    position: relative;
    overflow: hidden;
    padding: 58px 0 64px;
    background:
        radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.16), transparent 32%),
        radial-gradient(circle at 18% 36%, rgba(14, 165, 233, 0.09), transparent 28%),
        linear-gradient(180deg, #03060d 0%, #05070d 100%);
    color: #fff;
}

.cdn-solutions,
.cdn-solutions * {
    box-sizing: border-box;
}

.cdn-solutions::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.028) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.28;
    pointer-events: none;
}

.cdn-solutions-shell {
    position: relative;
    z-index: 2;
    width: min(1082px, calc(100% - 32px));
    margin: 0 auto;
}

.cdn-solutions-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cdn-solutions-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 28px;
    padding: 0 18px;
    border: 1px solid rgba(14, 165, 233, 0.44);
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.42);
    color: #38bdf8;
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-align: center;
}

.cdn-solutions-heading h2 {
    max-width: 760px;
    margin: 16px 0 0;
    color: #fff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.cdn-solutions-heading p {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(203, 213, 225, 0.66);
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.cdn-solutions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 12px;
    margin-top: 46px;
}

.cdn-solutions-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.cdn-solutions-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(59, 130, 246, 0.24);
    border-radius: 12px;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.13), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(5, 9, 16, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.24);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cdn-solutions-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 34px 92px rgba(0, 0, 0, 0.32), 0 0 28px rgba(59, 130, 246, 0.12);
}

.cdn-solutions-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.18;
    pointer-events: none;
}

.cdn-solutions-card-head {
    position: relative;
    z-index: 2;
}

.cdn-solutions-card-head h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.cdn-solutions-card-head h3 span {
    margin-left: 5px;
    color: rgba(148, 163, 184, 0.78);
    font-size: 14px;
}

.cdn-solutions-card-head p {
    display: -webkit-box;
    margin: 12px 0 0;
    color: rgba(203, 213, 225, 0.66);
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    overflow-wrap: anywhere;
}

.cdn-solutions-live {
    min-height: 408px;
}

.cdn-solutions-live-screen {
    position: relative;
    z-index: 2;
    height: 148px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 6px;
    background:
        radial-gradient(circle at 50% 38%, rgba(244, 114, 182, 0.45), transparent 15%),
        radial-gradient(circle at 50% 100%, rgba(217, 70, 239, 0.40), transparent 36%),
        linear-gradient(135deg, #7e22ce, #1e102c 70%);
}

.cdn-solutions-live-badge,
.cdn-solutions-video-tag {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 22px;
    padding: 0 10px;
    border-radius: 7px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.cdn-solutions-live-badge {
    top: 10px;
    left: 10px;
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.48);
}

.cdn-solutions-live-badge i,
.cdn-solutions-video-tag i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: cdnSolutionsNodePulse 1.2s ease-in-out infinite;
}

.cdn-solutions-live-heart {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fb7185;
    clip-path: polygon(50% 85%, 7% 40%, 12% 16%, 36% 8%, 50% 24%, 64% 8%, 88% 16%, 93% 40%);
    animation: cdnSolutionsTicker 3s ease-in-out infinite;
}

.cdn-solutions-live-heart.heart-a {
    left: 34px;
    top: 86px;
}

.cdn-solutions-live-heart.heart-b {
    right: 54px;
    top: 58px;
    animation-delay: 0.9s;
}

.cdn-solutions-live-heart.heart-c {
    right: 26px;
    top: 42px;
    animation-delay: 1.7s;
}

.cdn-solutions-live-avatar {
    position: absolute;
    left: 68px;
    right: 68px;
    bottom: -8px;
    height: 65px;
    border-radius: 65% 65% 0 0;
    background: rgba(244, 114, 182, 0.34);
}

.cdn-solutions-live-line {
    position: absolute;
    left: 12px;
    right: 58px;
    bottom: 24px;
    height: 2px;
    background: #d946ef;
}

.cdn-solutions-live-line::after {
    content: "";
    position: absolute;
    left: 72px;
    top: -3px;
    width: 72px;
    height: 9px;
    border-bottom: 2px solid #d946ef;
    border-radius: 50%;
    animation: cdnSolutionsWave 2.4s ease-in-out infinite;
}

.cdn-solutions-live-viewers {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: #fff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
}

.cdn-solutions-live-viewers i {
    width: 10px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.cdn-solutions-live-tools {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 104px;
    display: grid;
    width: 106px;
    gap: 6px;
}

.cdn-solutions-audio-bars,
.cdn-solutions-chat-lines {
    position: relative;
    height: 78px;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(3, 12, 24, 0.72);
}

.cdn-solutions-audio-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.cdn-solutions-audio-bars i {
    width: 5px;
    height: 25px;
    border-radius: 999px;
    background: #3b82f6;
    animation: cdnSolutionsWave 1.4s ease-in-out infinite;
}

.cdn-solutions-audio-bars i:nth-child(2) {
    height: 36px;
    animation-delay: 0.1s;
}

.cdn-solutions-audio-bars i:nth-child(3) {
    height: 30px;
    animation-delay: 0.2s;
}

.cdn-solutions-audio-bars i:nth-child(4) {
    height: 42px;
    animation-delay: 0.3s;
}

.cdn-solutions-audio-bars i:nth-child(5) {
    height: 28px;
    animation-delay: 0.4s;
}

.cdn-solutions-audio-bars em,
.cdn-solutions-chat-lines em {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 2px 5px;
    border-radius: 5px;
    background: #2563eb;
    color: #fff;
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
}

.cdn-solutions-chat-lines {
    height: 76px;
    padding: 22px 22px;
}

.cdn-solutions-chat-lines i {
    display: block;
    height: 7px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.72);
}

.cdn-solutions-chat-lines i:nth-child(1) {
    width: 38px;
}

.cdn-solutions-chat-lines i:nth-child(2) {
    width: 58px;
}

.cdn-solutions-chat-lines i:nth-child(3) {
    width: 42px;
    opacity: 0.38;
}

.cdn-solutions-chat-lines em {
    background: #10b981;
}

.cdn-solutions-platforms {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.cdn-solutions-platforms span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 7px;
    color: rgba(226, 232, 240, 0.84);
    font-size: 12px;
}

.cdn-solutions-app {
    border-color: rgba(59, 130, 246, 0.34);
}

.cdn-solutions-codebox {
    position: relative;
    z-index: 2;
    min-height: 152px;
    margin-top: 14px;
    padding: 42px 13px 14px;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 8px;
    background: rgba(3, 7, 18, 0.76);
    font-family: Consolas, "Courier New", monospace;
}

.cdn-solutions-codebox.is-dark {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.38), rgba(2, 6, 23, 0.82)),
        #030712;
    border-color: rgba(59, 130, 246, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.cdn-solutions-codebox.is-dark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 38px;
    height: 1px;
    background: rgba(148, 163, 184, 0.12);
}

.cdn-solutions-window-dots {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
}

.cdn-solutions-window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cdn-solutions-window-dots i:nth-child(1) {
    background: #ef4444;
}

.cdn-solutions-window-dots i:nth-child(2) {
    background: #eab308;
}

.cdn-solutions-window-dots i:nth-child(3) {
    background: #10b981;
}

.cdn-solutions-codebox > span {
    position: absolute;
    top: 10px;
    left: 66px;
    color: rgba(148, 163, 184, 0.58);
    font-size: 11px;
}

.cdn-solutions-codebox pre {
    margin: 0;
    color: #e879f9;
    font-size: 12px;
    line-height: 24px;
    white-space: pre-wrap;
}

.cdn-solutions-codebox.is-dark pre,
.cdn-solutions-codebox.is-dark code {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: #dbeafe;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    line-height: 23px;
    white-space: pre-wrap;
}

.cdn-solutions-code-line {
    display: block;
    min-height: 24px;
    opacity: 0;
    transform: translateY(5px);
}

.cdn-solutions-code-line.is-indent {
    padding-left: 16px;
}

.cdn-solutions-code-line.is-visible {
    animation: cdnSolutionsLineIn 0.36s ease-out both;
}

.cdn-solutions-code-token.is-keyword {
    color: #e879f9;
}

.cdn-solutions-code-token.is-string {
    color: #00f5a0;
}

.cdn-solutions-code-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    margin-left: 3px;
    border-radius: 1px;
    background: #60a5fa;
    vertical-align: -2px;
    animation: cdnSolutionsCodeCursor 0.9s steps(2, end) infinite;
}

.cdn-solutions-main-card {
    display: flex;
    flex-direction: column;
    min-height: 830px;
    padding: 0;
}

.cdn-solutions-main-card > .cdn-solutions-card-head {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.cdn-solutions-game-panel {
    position: relative;
    z-index: 2;
    margin: 20px 24px 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.34);
}

.cdn-solutions-game-head,
.cdn-solutions-game-sub,
.cdn-solutions-ping,
.cdn-solutions-game-stats,
.cdn-solutions-studios-head,
.cdn-solutions-main-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cdn-solutions-game-head strong {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 22px;
}

.cdn-solutions-game-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #10d7a1;
    font-size: 12px;
    font-weight: 800;
}

.cdn-solutions-game-head span i,
.cdn-solutions-studios-head em i,
.cdn-solutions-ai-head em i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10d7a1;
    box-shadow: 0 0 12px rgba(16, 215, 161, 0.72);
}

.cdn-solutions-game-sub {
    justify-content: flex-start;
    margin-top: 12px;
    color: rgba(203, 213, 225, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.cdn-solutions-video-frame {
    position: relative;
    height: 218px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.32);
    border-radius: 8px;
    background: #020617;
    box-shadow: 0 0 34px rgba(14, 165, 233, 0.10);
    animation: cdnSolutionsVideoGlow 3.4s ease-in-out infinite;
}

.cdn-solutions-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cdn-solutions-video-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: rgba(148, 163, 184, 0.62);
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 2px;
}

.cdn-solutions-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), transparent 50%, rgba(2, 6, 23, 0.28));
    pointer-events: none;
}

.cdn-solutions-video-tag {
    top: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.cdn-solutions-video-tag.tag-left {
    left: 10px;
}

.cdn-solutions-video-tag.tag-right {
    right: 10px;
    color: #5eead4;
}

.cdn-solutions-ping {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.35);
}

.cdn-solutions-ping-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(203, 213, 225, 0.66);
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    line-height: 15px;
}

.cdn-solutions-ping-label i {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(96, 165, 250, 0.42);
    border-radius: 7px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.42), transparent 42%);
}

.cdn-solutions-sparkline {
    flex: 1;
    height: 36px;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.10)),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent);
}

.cdn-solutions-sparkline i {
    display: block;
    width: 180%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0 8%, #3b82f6 8% 10%, transparent 10% 18%, #38bdf8 18% 20%, transparent 20% 31%, #22c55e 31% 33%, transparent 33% 45%, #3b82f6 45% 47%, transparent 47% 100%);
    clip-path: polygon(0 66%, 6% 50%, 11% 62%, 18% 30%, 25% 44%, 32% 20%, 40% 58%, 48% 33%, 56% 42%, 66% 22%, 72% 64%, 80% 30%, 88% 46%, 100% 24%);
    animation: cdnSolutionsTicker 4s linear infinite;
}

.cdn-solutions-ping strong {
    color: #bfdbfe;
    font-family: Consolas, "Courier New", monospace;
    font-size: 17px;
}

.cdn-solutions-ping strong em {
    display: block;
    color: rgba(148, 163, 184, 0.72);
    font-size: 9px;
    font-style: normal;
    line-height: 11px;
}

.cdn-solutions-game-stats {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.32);
}

.cdn-solutions-game-stats div {
    min-width: 0;
}

.cdn-solutions-game-stats strong {
    display: block;
    color: #f472b6;
    font-family: Consolas, "Courier New", monospace;
    font-size: 14px;
    line-height: 20px;
}

.cdn-solutions-game-stats div:nth-child(2) strong {
    color: #93c5fd;
}

.cdn-solutions-game-stats div:nth-child(3) strong {
    color: #5eead4;
}

.cdn-solutions-game-stats span {
    display: block;
    color: rgba(148, 163, 184, 0.58);
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    line-height: 14px;
    letter-spacing: 1.1px;
}

.cdn-solutions-studios {
    margin-top: 12px;
}

.cdn-solutions-studios-head span {
    color: rgba(148, 163, 184, 0.62);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 1.6px;
}

.cdn-solutions-studios-head em {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 9px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    background: rgba(6, 95, 70, 0.28);
    color: #5eead4;
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.cdn-solutions-studio-track {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow: hidden;
}

.cdn-solutions-studio-track span {
    flex: 0 0 116px;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid rgba(96, 165, 250, 0.20);
    border-radius: 7px;
    background: rgba(15, 23, 42, 0.62);
    color: #fde047;
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    animation: cdnSolutionsTicker 9s linear infinite;
}

.cdn-solutions-studio-track small {
    display: block;
    margin-top: 4px;
    color: rgba(203, 213, 225, 0.48);
    font-size: 8px;
    letter-spacing: 0.7px;
}

.cdn-solutions-main-foot {
    position: relative;
    z-index: 2;
    margin: 20px 24px 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.cdn-solutions-main-foot span {
    color: rgba(203, 213, 225, 0.68);
    font-size: 14px;
}

.cdn-solutions-main-foot strong {
    color: #93c5fd;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    letter-spacing: 2px;
}

.cdn-solutions-main-foot strong em {
    color: #67e8f9;
    font-size: 24px;
    font-style: normal;
}

.cdn-solutions-finance-panel,
.cdn-solutions-ai-panel {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.34);
}

.cdn-solutions-finance-panel {
    padding: 20px 16px;
}

.cdn-solutions-market-head,
.cdn-solutions-finance-meta,
.cdn-solutions-ai-head,
.cdn-solutions-ai-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cdn-solutions-market-head span {
    color: #facc15;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    font-weight: 900;
}

.cdn-solutions-market-head span em {
    margin-left: 5px;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(5, 150, 105, 0.35);
    color: #5eead4;
    font-size: 10px;
    font-style: normal;
}

.cdn-solutions-market-head strong {
    color: #fff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 17px;
}

.cdn-solutions-finance-chart {
    display: block;
    width: 100%;
    height: 150px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.cdn-solutions-finance-chart polyline {
    stroke-dasharray: 460;
    stroke-dashoffset: 460;
    animation: cdnSolutionsLineIn 2.6s ease-out forwards;
}

.cdn-solutions-finance-chart circle {
    fill: #1d4ed8;
    stroke: #60a5fa;
    stroke-width: 3;
}

.cdn-solutions-candles path {
    stroke: #10b981;
    stroke-width: 4;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    animation: cdnSolutionsNodePulse 2.2s ease-in-out infinite;
}

.cdn-solutions-candles path:nth-child(2),
.cdn-solutions-candles path:nth-child(4) {
    stroke: #ef4444;
}

.cdn-solutions-finance-meta {
    margin-top: 14px;
}

.cdn-solutions-finance-meta span {
    display: grid;
    gap: 5px;
    color: rgba(148, 163, 184, 0.62);
    font-size: 10px;
    text-align: center;
}

.cdn-solutions-finance-meta strong {
    color: #5eead4;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
}

.cdn-solutions-finance-meta span:first-child strong {
    color: #7dd3fc;
}

.cdn-solutions-ai-panel {
    padding: 18px;
    border-color: rgba(16, 185, 129, 0.24);
}

.cdn-solutions-ai {
    border-color: rgba(16, 185, 129, 0.38);
    background:
        radial-gradient(circle at 100% 0, rgba(16, 185, 129, 0.09), transparent 38%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(4, 9, 15, 0.94));
}

.cdn-solutions-ai:hover {
    border-color: rgba(16, 185, 129, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 34px 92px rgba(0, 0, 0, 0.32), 0 0 28px rgba(16, 185, 129, 0.13);
}

.cdn-solutions-ai-head span,
.cdn-solutions-ai-foot span {
    color: rgba(148, 163, 184, 0.62);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 1.2px;
}

.cdn-solutions-ai-head em {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #34d399;
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.cdn-solutions-ai-net {
    display: block;
    width: 100%;
    height: 142px;
    margin-top: 8px;
}

.cdn-solutions-ai-net .links path {
    fill: none;
    stroke: rgba(16, 185, 129, 0.18);
    stroke-width: 1.25;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: cdnSolutionsAiLinkPulse 4.2s ease-in-out infinite;
}

.cdn-solutions-ai-net .input-nodes circle,
.cdn-solutions-ai-net .hidden-nodes circle,
.cdn-solutions-ai-net .output-nodes circle {
    fill: rgba(2, 6, 23, 0.88);
    stroke: #10b981;
    stroke-width: 2.5;
    transform-box: fill-box;
    transform-origin: center;
    animation: cdnSolutionsNodePulse 2.3s ease-in-out infinite;
}

.cdn-solutions-ai-net .input-nodes circle {
    stroke: #3b82f6;
}

.cdn-solutions-ai-net .output-nodes circle {
    stroke: #eab308;
}

.cdn-solutions-ai-net .hidden-secondary circle:nth-child(2) {
    fill: #10b981;
    stroke-width: 0;
}

.cdn-solutions-ai-net .flow-dot {
    fill: #5eead4;
    filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.82));
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: cdnSolutionsAiFlow 2.9s ease-in-out infinite;
}

.cdn-solutions-ai-net .flow-dot.dot-b {
    animation-delay: 0.45s;
}

.cdn-solutions-ai-net .flow-dot.dot-c {
    animation-delay: 0.9s;
}

.cdn-solutions-ai-net .flow-dot.dot-d {
    animation-delay: 1.35s;
}

.cdn-solutions-ai-net .flow-dot.dot-e {
    animation-delay: 1.8s;
}

.cdn-solutions-ai-labels {
    display: grid;
    grid-template-columns: 70px 70px 70px 1fr;
    margin: -8px 0 8px;
    padding: 0 2px 0 47px;
    color: rgba(148, 163, 184, 0.52);
    font-family: Consolas, "Courier New", monospace;
    font-size: 8px;
    letter-spacing: 0.5px;
}

.cdn-solutions-ai-foot {
    margin-top: 10px;
    padding-top: 11px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.cdn-solutions-ai-foot strong {
    color: #5eead4;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
}

@keyframes cdnSolutionsVideoGlow {
    0%,
    100% {
        border-color: rgba(14, 165, 233, 0.30);
        box-shadow: 0 0 28px rgba(14, 165, 233, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    50% {
        border-color: rgba(94, 234, 212, 0.46);
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.18), 0 0 24px rgba(16, 185, 129, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

@keyframes cdnSolutionsWave {
    0%,
    100% {
        transform: scaleY(0.72) translateY(0);
        opacity: 0.72;
    }

    50% {
        transform: scaleY(1.16) translateY(-1px);
        opacity: 1;
    }
}

@keyframes cdnSolutionsLineIn {
    0% {
        opacity: 0;
        transform: translateY(5px);
        filter: blur(0.4px);
        stroke-dashoffset: 460;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
        stroke-dashoffset: 0;
    }
}

@keyframes cdnSolutionsTicker {
    0% {
        transform: translate3d(0, 0, 0);
        stroke-dashoffset: 0;
        opacity: 0.78;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate3d(-42px, 0, 0);
        stroke-dashoffset: -64;
        opacity: 0.78;
    }
}

@keyframes cdnSolutionsNodePulse {
    0%,
    100% {
        opacity: 0.68;
        transform: scale(0.92);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes cdnSolutionsCodeCursor {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@keyframes cdnSolutionsAiFlow {
    0% {
        opacity: 0;
        transform: translate3d(-18px, -4px, 0) scale(0.72);
    }

    18%,
    72% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(28px, 8px, 0) scale(0.96);
    }
}

@keyframes cdnSolutionsAiLinkPulse {
    0%,
    100% {
        opacity: 0.28;
        stroke-dashoffset: 150;
    }

    50% {
        opacity: 0.74;
        stroke-dashoffset: 0;
    }
}

@keyframes cdnThreatRadarSweep {
    from {
        transform: rotate(-10deg);
    }

    to {
        transform: rotate(350deg);
    }
}

@keyframes cdnThreatPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes cdnThreatDefconGlow {
    0%,
    100% {
        box-shadow: 0 0 22px rgba(var(--defcon-rgb), 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
        border-color: rgba(var(--defcon-rgb), 0.38);
    }

    50% {
        box-shadow: 0 0 34px rgba(var(--defcon-rgb), 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10);
        border-color: rgba(var(--defcon-rgb), 0.68);
    }
}

@keyframes cdnThreatDefconSwap {
    0% {
        opacity: 0.62;
        transform: translateY(3px) scale(0.98);
        filter: blur(0.4px) brightness(1.28);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) brightness(1);
    }
}

@keyframes cdnThreatLogEnter {
    from {
        opacity: 0;
        transform: translateY(-12px);
        filter: brightness(1.35);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: brightness(1);
    }
}

@keyframes cdnThreatPointPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.86);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

@keyframes cdnThreatPanelScan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 220px;
    }
}

@keyframes cdnThreatMetricShine {
    0% {
        background-position: center, 160% 0;
    }

    100% {
        background-position: center, -80% 0;
    }
}

@keyframes cdnThreatMetricIconFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.06);
    }
}

@keyframes cdnDevTrustScan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 190px;
    }
}

@keyframes cdnDevTrustPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes cdnDevTrustBeam {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes cdnDevTrustCodeSwap {
    0% {
        opacity: 0.54;
        transform: translateY(4px);
        filter: blur(0.5px) brightness(1.2);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0) brightness(1);
    }
}

@keyframes cdnDevTrustLineIn {
    0% {
        opacity: 0;
        transform: translateY(5px);
        filter: blur(0.4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cdnDevTrustProgressFill {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(120%);
    }
}

@keyframes cdnDevTrustCertSwap {
    0% {
        opacity: 0.64;
        transform: translateY(3px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cdnDevTrustCursor {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}

/* CDN light theme bridge */
.cdn-light-section {
    --cdn-light-bg: #f7faff;
    --cdn-light-bg-strong: #ffffff;
    --cdn-light-card: #ffffff;
    --cdn-light-card-soft: rgba(255, 255, 255, 0.88);
    --cdn-light-border: rgba(37, 99, 235, 0.14);
    --cdn-light-primary: #2563eb;
    --cdn-light-primary-soft: rgba(37, 99, 235, 0.10);
    --cdn-light-cyan: #06b6d4;
    --cdn-light-green: #10b981;
    --cdn-light-text: #1f2937;
    --cdn-light-muted: #5b6b86;
    --cdn-light-shadow: 0 24px 70px rgba(37, 99, 235, 0.10);
    color: var(--cdn-light-text);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 48%, #ffffff 100%);
}

.cdn-threat-hub.cdn-light-section,
.cdn-devtrust.cdn-light-section,
.cdn-solutions.cdn-light-section {
    color: var(--cdn-light-text);
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(6, 182, 212, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--cdn-light-bg) 48%, #ffffff 100%);
}

.cdn-devtrust.cdn-light-section {
    background:
        radial-gradient(circle at 76% 24%, rgba(124, 58, 237, 0.08), transparent 26%),
        radial-gradient(circle at 18% 78%, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.cdn-solutions.cdn-light-section {
    background:
        radial-gradient(circle at 20% 16%, rgba(37, 99, 235, 0.09), transparent 28%),
        radial-gradient(circle at 80% 72%, rgba(16, 185, 129, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.cdn-threat-hub.cdn-light-section::before,
.cdn-devtrust.cdn-light-section::before,
.cdn-solutions.cdn-light-section::before {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 82%, transparent);
    opacity: 0.58;
}

.cdn-threat-hub.cdn-light-section::after,
.cdn-devtrust.cdn-light-section::after,
.cdn-solutions.cdn-light-section::after {
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.12), transparent 34%, transparent 66%, rgba(6, 182, 212, 0.10)),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.88));
    opacity: 0.58;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-kicker,
.cdn-devtrust.cdn-light-section .cdn-devtrust-kicker,
.cdn-solutions.cdn-light-section .cdn-solutions-kicker {
    color: var(--cdn-light-primary);
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.10);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-heading h2,
.cdn-devtrust.cdn-light-section .cdn-devtrust-heading h2,
.cdn-solutions.cdn-light-section .cdn-solutions-heading h2 {
    color: var(--cdn-light-text);
    text-shadow: none;
    text-wrap: balance;
    word-break: break-word;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-heading h2 span,
.cdn-devtrust.cdn-light-section .cdn-devtrust-heading h2 span,
.cdn-solutions.cdn-light-section .cdn-solutions-heading h2 span {
    color: var(--cdn-light-primary);
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-heading-copy-title span {
    display: inline-block;
    margin-left: 0.18em;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-heading p,
.cdn-devtrust.cdn-light-section .cdn-devtrust-heading p,
.cdn-solutions.cdn-light-section .cdn-solutions-heading p {
    color: var(--cdn-light-muted);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-heading > h2:not(.cdn-threat-heading-copy-title),
.cdn-threat-hub.cdn-light-section .cdn-threat-heading > p:not(.cdn-threat-heading-copy-desc) {
    display: none;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-defcon-pill {
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.30);
    background: linear-gradient(180deg, #fff7ed, #fffbeb);
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.14);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-defcon-track i {
    background: rgba(37, 99, 235, 0.14);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-defcon-track i.is-active {
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.28);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-panel-label,
.cdn-devtrust.cdn-light-section .cdn-devtrust-title span,
.cdn-solutions.cdn-light-section .cdn-solutions-card-head p {
    color: var(--cdn-light-muted);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-panel-label span:first-child,
.cdn-threat-hub.cdn-light-section .cdn-threat-panel-label span:last-child {
    color: rgba(37, 99, 235, 0.78);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-console,
.cdn-threat-hub.cdn-light-section .cdn-threat-terminal,
.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card {
    color: var(--cdn-light-text);
    border-color: var(--cdn-light-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
        var(--cdn-light-card);
    box-shadow: var(--cdn-light-shadow);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-console:hover,
.cdn-threat-hub.cdn-light-section .cdn-threat-terminal:hover,
.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card:hover {
    border-color: rgba(37, 99, 235, 0.30);
    background:
        linear-gradient(180deg, #ffffff, #f8fbff),
        var(--cdn-light-card);
    box-shadow: 0 28px 78px rgba(37, 99, 235, 0.16);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-radar-screen {
    border-color: rgba(37, 99, 235, 0.18);
    background:
        radial-gradient(circle at 50% 44%, rgba(37, 99, 235, 0.16), transparent 32%),
        linear-gradient(180deg, #f8fbff, #eef6ff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-radar-readout span,
.cdn-threat-hub.cdn-light-section .cdn-threat-radar-state span,
.cdn-threat-hub.cdn-light-section .cdn-threat-radar-footer strong,
.cdn-threat-hub.cdn-light-section .cdn-threat-legend span {
    color: rgba(37, 99, 235, 0.78);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-radar-svg text {
    fill: rgba(37, 99, 235, 0.66);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-log-window {
    border-color: rgba(37, 99, 235, 0.16);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-log-head {
    border-color: rgba(37, 99, 235, 0.12);
    background: rgba(248, 251, 255, 0.92);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-log-title strong {
    color: rgba(31, 41, 55, 0.68);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-pause {
    color: #475569;
    border-color: rgba(37, 99, 235, 0.16);
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-log-row {
    color: #475569;
    border-color: rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.86);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-log-time,
.cdn-threat-hub.cdn-light-section .cdn-threat-log-path {
    color: #64748b;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card span {
    color: #64748b;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card strong,
.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card:hover strong {
    color: #172033;
    text-shadow: none;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card small {
    color: rgba(71, 85, 105, 0.78);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-card,
.cdn-solutions.cdn-light-section .cdn-solutions-card,
.cdn-solutions.cdn-light-section .cdn-solutions-main-card {
    color: var(--cdn-light-text);
    border-color: var(--cdn-light-border);
    background:
        radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
    box-shadow: var(--cdn-light-shadow);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-card:hover,
.cdn-devtrust.cdn-light-section .cdn-devtrust-card.is-hovered,
.cdn-solutions.cdn-light-section .cdn-solutions-card:hover,
.cdn-solutions.cdn-light-section .cdn-solutions-main-card:hover {
    border-color: rgba(37, 99, 235, 0.30);
    box-shadow: 0 30px 86px rgba(37, 99, 235, 0.15);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-compliance,
.cdn-solutions.cdn-light-section .cdn-solutions-ai {
    border-color: rgba(6, 182, 212, 0.18);
    background:
        radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.10), transparent 30%),
        radial-gradient(circle at 16% 88%, rgba(37, 99, 235, 0.07), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.97));
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-card::before,
.cdn-solutions.cdn-light-section .cdn-solutions-card::before,
.cdn-solutions.cdn-light-section .cdn-solutions-main-card::before {
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-title h3,
.cdn-devtrust.cdn-light-section .cdn-devtrust-copy h3,
.cdn-solutions.cdn-light-section .cdn-solutions-card-head h3,
.cdn-solutions.cdn-light-section .cdn-solutions-game-head strong {
    color: var(--cdn-light-text);
    text-shadow: none;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-copy p,
.cdn-solutions.cdn-light-section .cdn-solutions-card-head p,
.cdn-solutions.cdn-light-section .cdn-solutions-main-foot span {
    color: var(--cdn-light-muted);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-tabs,
.cdn-solutions.cdn-light-section .cdn-solutions-platforms span {
    border-color: rgba(37, 99, 235, 0.14);
    background: #f1f6ff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-tab {
    color: #5b6b86;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-tab.is-active {
    color: #ffffff;
    border-color: rgba(37, 99, 235, 0.24);
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-code-window,
.cdn-solutions.cdn-light-section .cdn-solutions-codebox.is-dark {
    border-color: rgba(37, 99, 235, 0.18);
    background: linear-gradient(180deg, #071426, #0a1830);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-code-head,
.cdn-solutions.cdn-light-section .cdn-solutions-codebox.is-dark > span {
    border-color: rgba(96, 165, 250, 0.16);
    background: rgba(15, 23, 42, 0.52);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-deploy,
.cdn-devtrust.cdn-light-section .cdn-devtrust-metrics,
.cdn-devtrust.cdn-light-section .cdn-devtrust-radar,
.cdn-solutions.cdn-light-section .cdn-solutions-game-panel,
.cdn-solutions.cdn-light-section .cdn-solutions-ping,
.cdn-solutions.cdn-light-section .cdn-solutions-game-stats,
.cdn-solutions.cdn-light-section .cdn-solutions-finance-panel,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-panel {
    border-color: rgba(37, 99, 235, 0.14);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-progress-segment {
    background: rgba(37, 99, 235, 0.12);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-progress-segment.is-active {
    background: rgba(37, 99, 235, 0.22);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-stage {
    color: #64748b;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-stage.is-active {
    color: var(--cdn-light-primary);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-radar-svg line,
.cdn-devtrust.cdn-light-section .cdn-devtrust-radar-svg circle {
    stroke-opacity: 0.26;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-cert {
    background: rgba(255, 255, 255, 0.78);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-cert-panel {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.14);
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-metrics span {
    color: #64748b;
}

.cdn-solutions.cdn-light-section .cdn-solutions-live-tools,
.cdn-solutions.cdn-light-section .cdn-solutions-live-screen {
    border-color: rgba(37, 99, 235, 0.14);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.cdn-solutions.cdn-light-section .cdn-solutions-game-sub span,
.cdn-solutions.cdn-light-section .cdn-solutions-ping-label span,
.cdn-solutions.cdn-light-section .cdn-solutions-game-stats span,
.cdn-solutions.cdn-light-section .cdn-solutions-studios-head span,
.cdn-solutions.cdn-light-section .cdn-solutions-studio-track small,
.cdn-solutions.cdn-light-section .cdn-solutions-finance-meta span,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-head span,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-foot span,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-labels span {
    color: #64748b;
}

.cdn-solutions.cdn-light-section .cdn-solutions-video-frame {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 48px rgba(37, 99, 235, 0.14);
}

.cdn-solutions.cdn-light-section .cdn-solutions-studio-track span {
    color: var(--cdn-light-text);
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.86);
}

.cdn-solutions.cdn-light-section .cdn-solutions-main-foot {
    border-color: rgba(37, 99, 235, 0.12);
}

.cdn-solutions.cdn-light-section .cdn-solutions-market-head strong {
    color: var(--cdn-light-text);
}

.cdn-solutions.cdn-light-section .cdn-solutions-ai-net .input-nodes circle,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-net .hidden-nodes circle,
.cdn-solutions.cdn-light-section .cdn-solutions-ai-net .output-nodes circle {
    fill: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-ai-foot {
    border-color: rgba(37, 99, 235, 0.12);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-radar-screen::after,
.cdn-threat-hub.cdn-light-section .cdn-threat-log-list::after {
    height: 54px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(37, 99, 235, 0.12));
    opacity: 0.62;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.26), rgba(37, 99, 235, 0) 68%);
    opacity: 0.10;
    filter: blur(22px);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-card-glow {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.24), rgba(6, 182, 212, 0.08) 42%, rgba(37, 99, 235, 0) 70%);
    filter: blur(30px);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card:hover::before {
    opacity: 0.22;
    background:
        radial-gradient(circle at var(--threat-card-x, 50%) var(--threat-card-y, 50%), rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 42%),
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.10) 34%, rgba(37, 99, 235, 0.20) 50%, rgba(255, 255, 255, 0.12) 66%, transparent 100%);
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card:hover .cdn-threat-card-glow {
    opacity: 0.24;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-deploy-head span,
.cdn-devtrust.cdn-light-section .cdn-devtrust-code-head em,
.cdn-devtrust.cdn-light-section .cdn-devtrust-stage,
.cdn-devtrust.cdn-light-section .cdn-devtrust-metrics span,
.cdn-devtrust.cdn-light-section .cdn-devtrust-radar-svg text {
    color: #52627a;
    fill: #52627a;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-deploy-head strong {
    color: #172033;
    text-shadow: none;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-deploy-head div:last-child strong {
    color: #0f766e;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-audit {
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.22);
    background: rgba(20, 184, 166, 0.14);
    text-shadow: none;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-code .line b {
    color: #64748b;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-cert {
    background: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-cert-panel strong {
    color: var(--cert-color);
    text-shadow: none;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-cert-panel span {
    color: #475569;
}

.cdn-solutions.cdn-light-section .cdn-solutions-platforms span {
    color: #334155;
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(241, 246, 255, 0.92);
}

.cdn-solutions.cdn-light-section .cdn-solutions-card-head h3 span {
    color: #64748b;
}

.cdn-solutions.cdn-light-section .cdn-solutions-codebox.is-dark > span {
    color: #b8c7dc;
}

.cdn-light-section {
    --cdn-light-bg: #ffffff;
    --cdn-light-card-soft: #ffffff;
    --cdn-light-shadow: 0 22px 62px rgba(37, 99, 235, 0.08);
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section {
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section::before {
    opacity: 0.16;
}

.cdn-devtrust.cdn-light-section::before {
    opacity: 0.16;
}

.cdn-solutions.cdn-light-section::before {
    opacity: 0.16;
}

.cdn-threat-hub.cdn-light-section::after {
    background: none;
    opacity: 0;
}

.cdn-devtrust.cdn-light-section::after {
    background: none;
    opacity: 0;
}

.cdn-solutions.cdn-light-section::after {
    background: none;
    opacity: 0;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-console {
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-terminal {
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-metric-card {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-card {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-compliance {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-card {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-main-card {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-ai {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-deploy {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-metrics {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-radar {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-game-panel {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-finance-panel {
    background: #ffffff;
}

.cdn-solutions.cdn-light-section .cdn-solutions-ai-panel {
    background: #ffffff;
}

.cdn-threat-hub.cdn-light-section .cdn-threat-radar-screen,
.cdn-threat-hub.cdn-light-section .cdn-threat-log-window,
.cdn-threat-hub.cdn-light-section .cdn-threat-log-head,
.cdn-threat-hub.cdn-light-section .cdn-threat-log-row,
.cdn-devtrust.cdn-light-section .cdn-devtrust-card:hover,
.cdn-devtrust.cdn-light-section .cdn-devtrust-card.is-hovered,
.cdn-solutions.cdn-light-section .cdn-solutions-card:hover,
.cdn-solutions.cdn-light-section .cdn-solutions-main-card:hover,
.cdn-solutions.cdn-light-section .cdn-solutions-ping,
.cdn-solutions.cdn-light-section .cdn-solutions-game-stats {
    background: #ffffff;
}

.cdn-devtrust.cdn-light-section .cdn-devtrust-card::before,
.cdn-solutions.cdn-light-section .cdn-solutions-card::before,
.cdn-solutions.cdn-light-section .cdn-solutions-main-card::before {
    opacity: 0.10;
}

@media (prefers-reduced-motion: reduce) {
    .cdn-threat-hub *,
    .cdn-threat-hub *::before,
    .cdn-threat-hub *::after,
    .cdn-devtrust *,
    .cdn-devtrust *::before,
    .cdn-devtrust *::after,
    .cdn-solutions *,
    .cdn-solutions *::before,
    .cdn-solutions *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1180px) {
    .cdn-threat-main {
        grid-template-columns: 1fr;
    }

    .cdn-devtrust-grid {
        grid-template-columns: 1fr;
    }

    .cdn-devtrust-card {
        min-height: auto;
    }

    .cdn-solutions-grid {
        grid-template-columns: 1fr;
    }

    .cdn-solutions-side {
        grid-template-rows: auto;
    }

    .cdn-solutions-card,
    .cdn-solutions-main-card {
        min-height: auto;
    }

    .cdn-solutions-live-tools {
        position: static;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .cdn-solutions {
        padding: 54px 0 58px;
    }

    .cdn-solutions-shell {
        width: calc(100% - 28px);
    }

    .cdn-solutions-heading h2 {
        max-width: 100%;
        font-size: 28px;
        line-height: 36px;
    }

    .cdn-solutions-heading p {
        max-width: 100%;
        font-size: 14px;
        line-height: 23px;
    }

    .cdn-solutions-grid {
        gap: 18px;
        margin-top: 30px;
    }

    .cdn-solutions-card {
        padding: 18px;
        border-radius: 10px;
    }

    .cdn-solutions-card-head h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .cdn-solutions-card-head p {
        font-size: 13px;
        line-height: 22px;
    }

    .cdn-solutions-live-screen {
        height: 150px;
    }

    .cdn-solutions-main-card > .cdn-solutions-card-head {
        padding: 18px;
    }

    .cdn-solutions-game-panel {
        margin: 16px 18px 0;
        padding: 14px;
    }

    .cdn-solutions-video-frame {
        height: 190px;
    }

    .cdn-solutions-ping,
    .cdn-solutions-game-stats {
        flex-wrap: wrap;
    }

    .cdn-solutions-sparkline {
        flex: 1 1 160px;
    }

    .cdn-solutions-main-foot {
        margin: 18px;
        padding-top: 16px;
        flex-wrap: wrap;
    }

    .cdn-solutions-finance-chart {
        height: 132px;
    }

    .cdn-solutions-ai-net {
        height: 150px;
    }

    .cdn-devtrust {
        padding: 54px 0;
    }

    .cdn-devtrust-shell {
        width: calc(100% - 28px);
    }

    .cdn-devtrust-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .cdn-devtrust-heading p {
        font-size: 14px;
        line-height: 23px;
    }

    .cdn-devtrust-heading p br {
        display: none;
    }

    .cdn-devtrust-grid {
        gap: 18px;
        margin-top: 30px;
    }

    .cdn-devtrust-card {
        padding: 18px;
    }

    .cdn-devtrust-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cdn-devtrust-tabs {
        width: 100%;
    }

    .cdn-devtrust-tab {
        flex: 1 1 0;
        min-width: 0;
    }

    .cdn-devtrust-code {
        padding: 14px 12px 18px;
        font-size: 12px;
        line-height: 20px;
    }

    .cdn-devtrust-code .line {
        min-height: 20px;
    }

    .cdn-devtrust-deploy-head,
    .cdn-devtrust-stages {
        flex-wrap: wrap;
    }

    .cdn-devtrust-stage {
        flex: 1 1 calc(50% - 8px);
    }

    .cdn-devtrust-radar {
        height: 286px;
    }

    .cdn-devtrust-radar-svg {
        inset: 0 4px;
        width: calc(100% - 8px);
    }

    .cdn-devtrust-cert {
        font-size: 10px;
        padding: 0 8px;
    }

    .cdn-devtrust-cert.cert-a {
        left: 2%;
    }

    .cdn-devtrust-cert.cert-b {
        left: 36%;
    }

    .cdn-devtrust-cert.cert-c {
        right: 20%;
    }

    .cdn-devtrust-cert.cert-d {
        left: 7%;
    }

    .cdn-devtrust-cert.cert-e {
        right: 0;
    }

    .cdn-devtrust-cert.cert-f {
        right: 18%;
    }

    .cdn-devtrust-cert.cert-g {
        left: 14%;
    }

    .cdn-devtrust-cert.cert-h {
        right: 2%;
        top: 62px;
    }

    .cdn-devtrust-cert-panel {
        right: 12%;
        min-width: 168px;
    }

    .cdn-devtrust-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .cdn-solutions-kicker {
        max-width: 100%;
        padding: 0 14px;
        font-size: 12px;
    }

    .cdn-solutions-heading h2 {
        font-size: 23px;
        line-height: 31px;
    }

    .cdn-solutions-card {
        padding: 14px;
    }

    .cdn-solutions-live-tools {
        grid-template-columns: 1fr;
    }

    .cdn-solutions-platforms span {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
    }

    .cdn-solutions-codebox {
        min-height: 142px;
        padding: 42px 12px 14px;
    }

    .cdn-solutions-codebox pre {
        font-size: 11px;
        line-height: 22px;
    }

    .cdn-solutions-codebox.is-dark pre,
    .cdn-solutions-codebox.is-dark code {
        font-size: 10.5px;
        line-height: 21px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .cdn-solutions-code-line {
        min-height: 21px;
        overflow-wrap: anywhere;
    }

    .cdn-solutions-game-head,
    .cdn-solutions-game-sub,
    .cdn-solutions-ping,
    .cdn-solutions-game-stats,
    .cdn-solutions-studios-head,
    .cdn-solutions-main-foot,
    .cdn-solutions-market-head,
    .cdn-solutions-finance-meta,
    .cdn-solutions-ai-head,
    .cdn-solutions-ai-foot {
        gap: 8px;
    }

    .cdn-solutions-game-head,
    .cdn-solutions-game-stats,
    .cdn-solutions-main-foot {
        align-items: flex-start;
        flex-direction: column;
    }

    .cdn-solutions-video-frame {
        height: 168px;
    }

    .cdn-solutions-video-tag {
        height: 20px;
        padding: 0 7px;
        font-size: 9px;
    }

    .cdn-solutions-ping-label {
        width: 100%;
    }

    .cdn-solutions-ping strong {
        font-size: 15px;
    }

    .cdn-solutions-studio-track span {
        flex-basis: 108px;
    }

    .cdn-solutions-finance-panel,
    .cdn-solutions-ai-panel {
        padding: 14px 12px;
    }

    .cdn-solutions-market-head strong {
        font-size: 15px;
    }

    .cdn-solutions-finance-meta {
        flex-wrap: wrap;
    }

    .cdn-solutions-finance-meta span {
        flex: 1 1 calc(33.333% - 8px);
    }

    .cdn-devtrust-kicker {
        max-width: 100%;
        padding: 0 12px;
        font-size: 10px;
        letter-spacing: 2.4px;
    }

    .cdn-devtrust-card {
        padding: 14px;
        border-radius: 10px;
    }

    .cdn-devtrust-title h3 {
        font-size: 16px;
        line-height: 23px;
    }

    .cdn-devtrust-code-head {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cdn-devtrust-code-head em {
        grid-column: 2;
        justify-self: start;
        margin-bottom: 8px;
    }

    .cdn-devtrust-code-window {
        min-height: 230px;
    }

    .cdn-devtrust-code {
        min-height: 190px;
        overflow-x: auto;
    }

    .cdn-devtrust-deploy {
        padding: 12px;
    }

    .cdn-devtrust-radar {
        height: 300px;
    }

    .cdn-devtrust-cert.cert-a {
        top: 38px;
    }

    .cdn-devtrust-cert.cert-b {
        top: 76px;
        left: 39%;
    }

    .cdn-devtrust-cert.cert-c {
        top: 108px;
        right: 14%;
    }

    .cdn-devtrust-cert.cert-d {
        top: 142px;
    }

    .cdn-devtrust-cert.cert-e {
        top: 150px;
    }

    .cdn-devtrust-cert.cert-f {
        right: 10%;
        bottom: 76px;
    }

    .cdn-devtrust-cert.cert-g {
        bottom: 52px;
        left: 4%;
    }

    .cdn-devtrust-cert.cert-h {
        right: 0;
        top: 44px;
    }

    .cdn-devtrust-cert-panel {
        right: 0;
        bottom: 8px;
        width: 178px;
    }

    .cdn-devtrust-copy h3 {
        font-size: 17px;
        line-height: 25px;
    }
}

/* Font Awesome icons */
.fa, .fas, .far {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-check:before {
    content: "\2713";
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    .cdn-ayea {
        width: 100%;
        padding: 0 16px;
    }

    .cdn-header {
        height: auto;
        padding: 40px 0 30px;
        background-size: 1500px;
        background-position: 50% 100%;
    }

    .header-desc {
        flex-direction: column;
    }

    .header-title {
        width: 100%;
    }

    .header-title h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .header-title p {
        font-size: 13px;
        line-height: 18px;
    }

    .header-title .header-Btn {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-title .header-Btn a {
        font-size: 13px;
        line-height: 30px;
    }

    .header-img {
        margin-top: 20px;
    }

    .header-img img {
        width: 100%;
        height: auto;
    }

    .section-title {
        font-size: 22px;
        line-height: 30px;
    }

    .advantages-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }

    .advantage-item {
        width: 100%;
        max-width: 320px;
    }

    .feature-item {
        width: 100%;
    }

    .feature-item:nth-child(n+3) {
        margin-top: 30px;
    }

    .feature-text p {
        margin-right: 0;
    }

    .scenarios-grid {
        flex-direction: column;
        gap: 16px;
    }

    .scenario-card-lg,
    .scenario-col {
        width: 100%;
    }

    .scenario-card-lg {
        height: 220px;
    }

    .scenario-content p {
        width: 100%;
    }

    .pricing-header-title {
        font-size: 22px;
        line-height: 30px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: scale(1.02);
    }

    .pricing-card-body {
        padding: 20px;
    }

    .pricing-card-name {
        font-size: 20px;
    }

    .pricing-card-price {
        font-size: 28px;
    }

    .cdn-threat-hub {
        padding: 54px 0;
    }

    .cdn-threat-shell {
        width: calc(100% - 28px);
    }

    .cdn-threat-heading {
        text-align: center;
    }

    .cdn-threat-kicker {
        letter-spacing: 2.6px;
    }

    .cdn-threat-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .cdn-threat-heading p {
        font-size: 14px;
        line-height: 23px;
    }

    .cdn-threat-heading p br {
        display: none;
    }

    .cdn-threat-defcon {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .cdn-threat-defcon-track i {
        width: 22px;
    }

    .cdn-threat-main {
        gap: 18px;
        margin-top: 28px;
    }

    .cdn-threat-panel-label {
        flex-wrap: wrap;
        gap: 4px 12px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .cdn-threat-radar-screen,
    .cdn-threat-log-window {
        height: 340px;
    }

    .cdn-threat-radar-readout,
    .cdn-threat-radar-state {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .cdn-threat-radar-readout {
        left: 16px;
    }

    .cdn-threat-radar-state {
        right: 16px;
    }

    .cdn-threat-radar-svg {
        inset: 52px 8px 42px;
        width: calc(100% - 16px);
        height: calc(100% - 94px);
    }

    .cdn-threat-radar-footer {
        right: 16px;
        left: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 9px;
        letter-spacing: 1.6px;
    }

    .cdn-threat-log-head {
        padding: 0 10px;
    }

    .cdn-threat-log-title strong {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .cdn-threat-pause {
        padding: 0 8px;
    }

    .cdn-threat-log-row {
        grid-template-columns: 82px 70px minmax(0, 1fr) auto;
        gap: 6px;
        padding: 5px 6px;
        font-size: 10px;
    }

    .cdn-threat-log-time {
        font-size: 10px;
    }

    .cdn-threat-tag,
    .cdn-threat-status {
        font-size: 9px;
    }

    .cdn-threat-status {
        padding: 0 6px;
    }

    .cdn-threat-log-path {
        font-size: 10px;
    }

    .cdn-threat-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cdn-header {
        padding: 30px 0 20px;
    }

    .header-title h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .header-title .header-Btn {
        flex-direction: column;
        align-items: stretch;
    }

    .header-title .header-Btn a {
        text-align: center;
    }

    .section-title {
        font-size: 20px;
    }

    .pricing-header-title {
        font-size: 20px;
    }

    .pricing-grid {
        gap: 12px;
    }

    .scenario-card-lg {
        height: 180px;
    }

    .cdn-threat-metrics {
        grid-template-columns: 1fr;
    }

    .cdn-threat-radar-screen,
    .cdn-threat-log-window {
        height: 330px;
    }

    .cdn-threat-defcon-pill {
        min-height: 38px;
        padding: 0 12px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .cdn-threat-log-row {
        grid-template-columns: 76px 66px minmax(0, 1fr);
    }

    .cdn-threat-status {
        grid-column: 3;
        justify-self: end;
        margin-top: -2px;
    }

    .cdn-threat-metric-card {
        min-height: auto;
    }

    .cdn-threat-hub.cdn-light-section .cdn-threat-heading h2,
    .cdn-devtrust.cdn-light-section .cdn-devtrust-heading h2 {
        max-width: 340px;
        font-size: 23px;
        line-height: 31px;
    }

    .cdn-threat-hub.cdn-light-section .cdn-threat-heading p {
        max-width: 340px;
        font-size: 13px;
        line-height: 24px;
    }

    .cdn-threat-hub.cdn-light-section .cdn-threat-metric-card {
        grid-template-columns: 30px minmax(0, 1fr);
        padding: 16px;
    }

    .cdn-threat-hub.cdn-light-section .cdn-threat-metric-card strong {
        min-width: 0;
        font-size: 24px;
        letter-spacing: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .cdn-threat-hub.cdn-light-section .cdn-threat-metric-card strong em {
        margin-left: 3px;
        font-size: 11px;
    }
}
