.blog-item .img-wrap {
    position: relative;
    max-width: 92%;
    margin: 0 auto 20px;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(180deg, #f3faf6 0%, #eef5ff 48%, #fff7ee 100%);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.1);
}

.blog-item .img-wrap a {
    display: block;
    height: 100%;
    position: relative;
}

.single .post-cover {
    position: relative;
    max-width: min(380px, 92%);
    margin: 0 auto 24px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #f3faf6 0%, #eef5ff 48%, #fff7ee 100%);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.12);
}

.blog-cover {
    position: absolute;
    inset: 0;
    overflow: hidden;
    font-family: inherit;
}

.blog-cover__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
    animation: blog-cover-orb 8s ease-in-out infinite alternate;
}

.blog-cover__orb--a {
    width: 46%;
    height: 46%;
    left: -8%;
    top: 8%;
    background: rgba(11, 224, 98, 0.35);
}

.blog-cover__orb--b {
    width: 40%;
    height: 40%;
    right: -6%;
    top: 28%;
    background: rgba(58, 160, 255, 0.3);
    animation-delay: 1.2s;
}

.blog-cover__orb--c {
    width: 36%;
    height: 36%;
    left: 28%;
    bottom: 0;
    background: rgba(251, 133, 0, 0.28);
    animation-delay: 2s;
}

.blog-cover__stage {
    position: absolute;
    inset: 12% 10% 16%;
    z-index: 1;
}

.blog-cover__chip {
    position: absolute;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.16);
    animation: blog-cover-chip 4.6s ease-in-out infinite;
}

.blog-cover__chip--1 {
    left: 4%;
    top: 10%;
    background: linear-gradient(135deg, #0be062, #009b3f);
}

.blog-cover__chip--2 {
    right: 3%;
    top: 30%;
    background: linear-gradient(135deg, #64b5ff, #3aa0ff);
    animation-delay: 0.7s;
}

.blog-cover__chip--3 {
    left: 8%;
    bottom: 8%;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    animation-delay: 1.3s;
}

.blog-cover__landing,
.blog-cover__browser,
.blog-cover__dev,
.blog-cover__cms {
    height: 100%;
}

.blog-cover__browser {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.14);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: linear-gradient(180deg, #f7faf8, #eef3f8);
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.blog-cover__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
    flex-shrink: 0;
}

.blog-cover__chrome span:nth-child(2) { background: #febc2e; }
.blog-cover__chrome span:nth-child(3) { background: #28c840; }

.blog-cover__url {
    flex: 1;
    height: 14px;
    margin-left: 6px;
    border-radius: 999px;
    background: #fff;
    color: #5b6b85;
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.04em;
}

.blog-cover__frame {
    flex: 1;
    min-height: 0;
    padding: 10px;
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #f8fbf9;
}

.blog-cover__hero {
    height: 32%;
    min-height: 28px;
    border-radius: 10px;
    background:
        linear-gradient(120deg, rgba(11, 224, 98, 0.35), rgba(58, 160, 255, 0.28), rgba(251, 133, 0, 0.22));
    background-size: 200% 200%;
    animation: blog-cover-mesh 6s ease-in-out infinite;
}

.blog-cover__lines {
    margin-top: 8px;
}

.blog-cover__lines b {
    display: block;
    height: 7px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.16);
    transform-origin: left center;
    animation: blog-cover-line 3.2s ease-in-out infinite;
}

.blog-cover__lines b:first-child { width: 78%; }
.blog-cover__lines b:last-child {
    width: 58%;
    animation-delay: 0.35s;
    background: rgba(20, 33, 61, 0.1);
}

.blog-cover__cta {
    width: 42%;
    height: 18px;
    margin-top: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    box-shadow: 0 8px 18px rgba(11, 224, 98, 0.28);
    animation: blog-cover-cta 2.4s ease-in-out infinite;
}

.blog-cover__form {
    margin-top: 8px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 33, 61, 0.08);
}

.blog-cover__form i,
.blog-cover__form em {
    display: block;
    height: 8px;
    margin-bottom: 6px;
    border-radius: 6px;
    background: rgba(20, 33, 61, 0.08);
}

.blog-cover__form em {
    width: 36%;
    height: 16px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #0be062, #009b3f);
    animation: blog-cover-cta 2.4s ease-in-out infinite 0.4s;
}

.blog-cover__pulse {
    position: absolute;
    right: 10%;
    bottom: 6%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11, 224, 98, 0.2);
    animation: blog-cover-ring 2.8s ease-out infinite;
}

.blog-cover__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.blog-cover__steps > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(20, 33, 61, 0.06);
    animation: blog-cover-rise 0.7s ease both;
}

.blog-cover__steps > div:nth-child(2) { animation-delay: 0.12s; }
.blog-cover__steps > div:nth-child(3) { animation-delay: 0.24s; }
.blog-cover__steps > div:nth-child(4) { animation-delay: 0.36s; }

.blog-cover__steps i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
    font-style: normal;
    color: #fff;
    background: linear-gradient(135deg, #0be062, #009b3f);
}

.blog-cover__steps b,
.blog-cover__steps em {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.12);
}

.blog-cover__steps em {
    width: 55%;
    height: 14px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    animation: blog-cover-cta 2.4s ease-in-out infinite;
}

.blog-cover__dev {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
}

.blog-cover__code {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 16px;
    background: rgba(18, 24, 38, 0.94);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.2);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__code span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0be062, rgba(11, 224, 98, 0.2));
    transform-origin: left center;
    animation: blog-cover-line 3.2s ease-in-out infinite;
}

.blog-cover__code span:nth-child(1) { width: 72%; }
.blog-cover__code span:nth-child(2) { width: 90%; animation-delay: 0.15s; background: linear-gradient(90deg, #3aa0ff, rgba(58, 160, 255, 0.2)); }
.blog-cover__code span:nth-child(3) { width: 58%; animation-delay: 0.3s; background: linear-gradient(90deg, #fb8500, rgba(251, 133, 0, 0.2)); }
.blog-cover__code span:nth-child(4) { width: 80%; animation-delay: 0.45s; }
.blog-cover__code span:nth-child(5) { width: 46%; animation-delay: 0.6s; background: linear-gradient(90deg, #64b5ff, rgba(58, 160, 255, 0.2)); }

.blog-cover__browser--mini {
    min-height: 0;
}

.blog-cover__search {
    height: 18px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(20, 33, 61, 0.1);
    position: relative;
}

.blog-cover__search i {
    position: absolute;
    left: 8px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #009b3f;
}

.blog-cover__serp {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-cover__serp > div {
    padding: 6px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(20, 33, 61, 0.06);
}

.blog-cover__serp b {
    display: block;
    height: 6px;
    width: 70%;
    margin-bottom: 5px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.16);
}

.blog-cover__serp i {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0be062, rgba(11, 224, 98, 0.15));
    transform-origin: left center;
    animation: blog-cover-line 3.2s ease-in-out infinite;
}

.blog-cover__serp > div:nth-child(1) i { width: 92%; }
.blog-cover__serp > div:nth-child(2) i { width: 68%; animation-delay: 0.2s; }
.blog-cover__serp > div:nth-child(3) i { width: 48%; animation-delay: 0.4s; background: linear-gradient(90deg, #3aa0ff, rgba(58, 160, 255, 0.15)); }

.blog-cover__cms {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.14);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__cms aside {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
    background: linear-gradient(180deg, #14213d, #1a2b4d);
}

.blog-cover__cms aside b,
.blog-cover__cms aside em {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.blog-cover__cms aside em {
    width: 70%;
    height: 16px;
    margin-top: auto;
    background: linear-gradient(180deg, #0be062, #009b3f);
    animation: blog-cover-cta 2.4s ease-in-out infinite;
}

.blog-cover__cms .blog-cover__frame {
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #f8fbf9;
}

.blog-cover__shop {
    position: relative;
    height: 100%;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.1);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.14);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__shop-head {
    height: 10px;
    width: 42%;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0be062, #3aa0ff);
}

.blog-cover__shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.blog-cover__shop-grid article {
    padding: 8px;
    border-radius: 10px;
    background: #f7faf8;
    border: 1px solid rgba(20, 33, 61, 0.06);
    animation: blog-cover-rise 0.7s ease both;
}

.blog-cover__shop-grid article:nth-child(2) { animation-delay: 0.12s; }
.blog-cover__shop-grid article:nth-child(3) { animation-delay: 0.24s; }
.blog-cover__shop-grid article:nth-child(4) { animation-delay: 0.36s; }

.blog-cover__shop-grid span {
    display: block;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 224, 98, 0.2), rgba(58, 160, 255, 0.18));
    margin-bottom: 6px;
}

.blog-cover__shop-grid b,
.blog-cover__shop-grid i {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: rgba(20, 33, 61, 0.14);
    margin-bottom: 5px;
}

.blog-cover__shop-grid i {
    width: 45%;
    background: rgba(251, 133, 0, 0.35);
}

.blog-cover__cart {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    box-shadow: 0 10px 24px rgba(11, 224, 98, 0.3);
    animation: blog-cover-chip 3.8s ease-in-out infinite;
}

.blog-cover__cart span {
    position: absolute;
    inset: 12px 10px 9px;
    border: 2px solid #fff;
    border-top: 0;
    border-radius: 0 0 6px 6px;
}

.blog-cover__cart span::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 3px;
    right: 3px;
    height: 8px;
    border: 2px solid #fff;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
}

.blog-cover__dns {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 8px;
}

.blog-cover__dns strong {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0be062, #009b3f);
    box-shadow: 0 10px 20px rgba(11, 224, 98, 0.25);
    animation: blog-cover-chip 4.2s ease-in-out infinite;
}

.blog-cover__dns strong:nth-child(2) {
    background: linear-gradient(135deg, #64b5ff, #3aa0ff);
    animation-delay: 0.4s;
}

.blog-cover__dns strong:nth-child(3) {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    animation-delay: 0.8s;
}

.blog-cover__host {
    height: 100%;
    padding: 12px;
    border-radius: 16px;
    background: rgba(18, 24, 38, 0.94);
    color: #e8eef8;
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.2);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__host-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.8;
}

.blog-cover__host-bar em {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff5f57;
}

.blog-cover__host-bar em:nth-child(2) { background: #febc2e; }
.blog-cover__host-bar em:nth-child(3) { background: #28c840; }
.blog-cover__host-bar span { margin-left: auto; }

.blog-cover__host-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 52%;
    padding: 4px 2px 0;
}

.blog-cover__host-chart i {
    flex: 1;
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, #0be062, rgba(11, 224, 98, 0.2));
    transform-origin: bottom center;
    animation: blog-cover-bar 2.8s ease-in-out infinite;
}

.blog-cover__host-chart i:nth-child(1) { height: 42%; }
.blog-cover__host-chart i:nth-child(2) { height: 58%; animation-delay: 0.1s; }
.blog-cover__host-chart i:nth-child(3) { height: 36%; animation-delay: 0.2s; }
.blog-cover__host-chart i:nth-child(4) { height: 72%; animation-delay: 0.3s; }
.blog-cover__host-chart i:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.blog-cover__host-chart i:nth-child(6) { height: 84%; animation-delay: 0.5s; }
.blog-cover__host-chart i:nth-child(7) { height: 64%; animation-delay: 0.6s; }
.blog-cover__host-chart i:nth-child(8) { height: 76%; animation-delay: 0.7s; }

.blog-cover__host-status {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #0be062;
    letter-spacing: 0.02em;
}

.blog-cover__price {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.blog-cover__price > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.1);
    animation: blog-cover-rise 0.7s ease both;
}

.blog-cover__price > div:nth-child(2) { animation-delay: 0.12s; }
.blog-cover__price > div:nth-child(3) { animation-delay: 0.24s; }

.blog-cover__price b {
    font-size: 12px;
    font-weight: 800;
    color: #14213d;
}

.blog-cover__price em {
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    color: #fff;
    padding: 5px 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0be062, #009b3f);
    animation: blog-cover-cta 2.4s ease-in-out infinite;
}

.blog-cover__price-card--hot {
    background:
        linear-gradient(120deg, rgba(11, 224, 98, 0.18), rgba(58, 160, 255, 0.14)) !important;
    border-color: rgba(11, 224, 98, 0.28) !important;
}

.blog-cover__chat {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: 0 18px 40px rgba(20, 33, 61, 0.16);
    animation: blog-cover-float 5.5s ease-in-out infinite;
}

.blog-cover__chat-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: linear-gradient(135deg, #0be062, #009b3f);
    color: #fff;
}

.blog-cover__chat-head span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.blog-cover__chat-head b {
    font-size: 11px;
    font-weight: 800;
}

.blog-cover__chat-head i {
    margin-left: auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
    animation: blog-cover-pulse-dot 1.6s ease-in-out infinite;
}

.blog-cover__chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background:
        radial-gradient(circle at 90% 10%, rgba(11, 224, 98, 0.08), transparent 40%),
        #f7faf8;
}

.blog-cover__bubble {
    max-width: 82%;
    padding: 7px 9px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    animation: blog-cover-rise 0.7s ease both;
}

.blog-cover__bubble--bot {
    align-self: flex-start;
    background: #fff;
    color: #14213d;
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-bottom-left-radius: 4px;
}

.blog-cover__bubble--user {
    align-self: flex-end;
    background: linear-gradient(135deg, #0be062, #009b3f);
    color: #fff;
    border-bottom-right-radius: 4px;
    animation-delay: 0.2s;
}

.blog-cover__bubble--typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 42px;
    animation-delay: 0.4s;
}

.blog-cover__bubble--typing em {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #009b3f;
    animation: blog-cover-typing 1.2s ease-in-out infinite;
}

.blog-cover__bubble--typing em:nth-child(2) { animation-delay: 0.15s; }
.blog-cover__bubble--typing em:nth-child(3) { animation-delay: 0.3s; }

@keyframes blog-cover-orb {
    from { transform: translate3d(0, 0, 0) scale(0.95); }
    to { transform: translate3d(12px, -10px, 0) scale(1.08); }
}

@keyframes blog-cover-chip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes blog-cover-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes blog-cover-mesh {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes blog-cover-line {
    0%, 100% { transform: scaleX(0.72); opacity: 0.7; }
    50% { transform: scaleX(1); opacity: 1; }
}

@keyframes blog-cover-cta {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.08); transform: scale(1.03); }
}

@keyframes blog-cover-ring {
    0% { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes blog-cover-rise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blog-cover-bar {
    0%, 100% { transform: scaleY(0.85); }
    50% { transform: scaleY(1); }
}

@keyframes blog-cover-pulse-dot {
    0%, 100% { opacity: 0.55; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes blog-cover-typing {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
    40% { transform: translateY(-3px); opacity: 1; }
}

[data-theme="dark"] .blog-item .img-wrap,
[data-theme="dark"] .single .post-cover {
    background: linear-gradient(180deg, #121826 0%, #151c29 55%, #1a2333 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .blog-cover__browser,
[data-theme="dark"] .blog-cover__cms,
[data-theme="dark"] .blog-cover__shop {
    background: rgba(18, 24, 38, 0.92);
    border-color: rgba(229, 234, 242, 0.1);
}

[data-theme="dark"] .blog-cover__chrome {
    background: linear-gradient(180deg, #1a2333, #151c29);
    border-bottom-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .blog-cover__frame,
[data-theme="dark"] .blog-cover__cms .blog-cover__frame {
    background:
        linear-gradient(180deg, rgba(11, 224, 98, 0.08), transparent 40%),
        #151c29;
}

[data-theme="dark"] .blog-cover__form,
[data-theme="dark"] .blog-cover__steps > div,
[data-theme="dark"] .blog-cover__serp > div,
[data-theme="dark"] .blog-cover__search,
[data-theme="dark"] .blog-cover__url,
[data-theme="dark"] .blog-cover__shop-grid article,
[data-theme="dark"] .blog-cover__price > div {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .blog-cover__chat {
    background: rgba(18, 24, 38, 0.95);
    border-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .blog-cover__chat-body {
    background:
        radial-gradient(circle at 90% 10%, rgba(11, 224, 98, 0.1), transparent 40%),
        #121826;
}

[data-theme="dark"] .blog-cover__bubble--bot {
    background: rgba(255, 255, 255, 0.06);
    color: #e8eef8;
    border-color: rgba(229, 234, 242, 0.08);
}

[data-theme="dark"] .blog-cover__price b {
    color: #e8eef8;
}

[data-theme="dark"] .blog-cover__lines b,
[data-theme="dark"] .blog-cover__steps b,
[data-theme="dark"] .blog-cover__serp b,
[data-theme="dark"] .blog-cover__form i {
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 767px) {
    .blog-cover__chip {
        font-size: 10px;
        padding: 5px 8px;
    }

    .blog-cover__stage {
        inset: 14% 11% 18%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-cover__orb,
    .blog-cover__chip,
    .blog-cover__browser,
    .blog-cover__cms,
    .blog-cover__code,
    .blog-cover__hero,
    .blog-cover__lines b,
    .blog-cover__cta,
    .blog-cover__form em,
    .blog-cover__pulse,
    .blog-cover__steps > div,
    .blog-cover__steps em,
    .blog-cover__code span,
    .blog-cover__serp i,
    .blog-cover__cms aside em,
    .blog-cover__shop,
    .blog-cover__cart,
    .blog-cover__shop-grid article,
    .blog-cover__dns strong,
    .blog-cover__host,
    .blog-cover__host-chart i,
    .blog-cover__price > div,
    .blog-cover__price em,
    .blog-cover__chat,
    .blog-cover__chat-head i,
    .blog-cover__bubble,
    .blog-cover__bubble--typing em {
        animation: none !important;
    }
}
