/* app/static/css/blockchain.css */

.blockchain-shell {
    --blockchain-teal: #037d9c;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 56px;
    color: #ffffff;
    box-sizing: border-box;
}

.explorer-hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 26px;
    margin-bottom: 22px;
    border: 2px solid #037d9c;
    border-radius: 20px;
    background:
        radial-gradient(circle at 72% 50%, rgba(3, 125, 156, 0.34), transparent 38%),
        linear-gradient(90deg, rgba(2, 8, 13, 0.98), rgba(4, 22, 30, 0.92) 48%, rgba(2, 8, 13, 0.96));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.explorer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.06) 42%, transparent),
        repeating-linear-gradient(90deg, rgba(158, 231, 255, 0.08) 0 1px, transparent 1px 58px),
        repeating-linear-gradient(0deg, rgba(158, 231, 255, 0.06) 0 1px, transparent 1px 58px);
    pointer-events: none;
}

.explorer-copy {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    max-width: 560px;
}

.blockchain-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin: 0 0 14px;
    padding: 10px 18px;
    border: 1px solid rgba(232, 251, 255, 0.55);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    color: #ffffff;
    box-shadow:
        0 0 14px rgba(255, 255, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    white-space: nowrap;
}

.blockchain-hero-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter:
        brightness(0) invert(1)
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
}

.blockchain-hero-badge span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.explorer-copy h1 {
    margin: 0 0 10px;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-text {
    max-width: 520px;
    margin: 0;
    color: #e8fbff;
    font-size: 15px;
    line-height: 1.55;
}

.network-status {
    position: relative;
    z-index: 3;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(5, 12, 20, 0.76);
    color: #f5fbff;
    font-size: 0.94rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #4df2a7;
    box-shadow: 0 0 16px rgba(77, 242, 167, 0.8);
}

.chain-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.blockchain-earth-image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(248%, 2920px);
    height: 100%;
    max-height: 100%;
    object-fit: fill;
    transform: translate(-50%, -50%);
    opacity: 0.72;
    filter:
        invert(1)
        brightness(1.28)
        sepia(1)
        saturate(2.2)
        hue-rotate(142deg)
        drop-shadow(0 0 7px rgba(232, 251, 255, 0.34))
        drop-shadow(0 0 16px rgba(3, 125, 156, 0.28));
    mix-blend-mode: screen;
}

.blockchain-network-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    mix-blend-mode: screen;
}

.network-routes path {
    fill: none;
    stroke: rgba(226, 252, 255, 0.54);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
        drop-shadow(0 0 3px rgba(238, 253, 255, 0.44))
        drop-shadow(0 0 8px rgba(3, 125, 156, 0.34));
}

.network-electric path {
    fill: none;
    stroke: rgba(120, 236, 255, 0.92);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 3 13 26 620;
    stroke-dashoffset: 0;
    opacity: 0.88;
    filter:
        drop-shadow(0 0 4px rgba(238, 253, 255, 0.82))
        drop-shadow(0 0 10px rgba(3, 125, 156, 0.78))
        drop-shadow(0 0 18px rgba(3, 125, 156, 0.42));
    animation: blockchain-electric-flow 2.8s linear infinite;
}

.network-electric path:nth-child(2) {
    animation-delay: -1.1s;
}

.network-electric path:nth-child(3) {
    animation-delay: -2.2s;
}

.network-electric path:nth-child(4) {
    animation-delay: -3.1s;
}

.network-cubes use {
    opacity: 0.96;
    animation: blockchain-cube-float 4.8s ease-in-out infinite;
}

.network-cubes use:nth-child(2n) {
    animation-delay: -1.2s;
}

.network-cubes use:nth-child(3n) {
    animation-delay: -2.3s;
}

.cube-face {
    fill: rgba(3, 125, 156, 0.12);
    stroke: rgba(238, 253, 255, 0.96);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.cube-top {
    fill: rgba(238, 253, 255, 0.15);
}

.cube-side {
    fill: rgba(3, 125, 156, 0.2);
}

.cube-line {
    fill: none;
    stroke: rgba(238, 253, 255, 0.96);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.cube-ring {
    fill: rgba(3, 125, 156, 0.08);
    stroke: rgba(238, 253, 255, 0.96);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

@keyframes blockchain-electric-flow {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.38;
    }
    18% {
        opacity: 1;
    }
    72% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -662;
        opacity: 0.38;
    }
}

@keyframes blockchain-cube-float {
    0%,
    100% {
        opacity: 0.88;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.chain-node {
    position: absolute;
    z-index: 3;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(238, 253, 255, 0.72);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(238, 253, 255, 0.24), rgba(3, 125, 156, 0.05) 45%, rgba(238, 253, 255, 0.16)),
        rgba(4, 18, 26, 0.64);
    box-shadow:
        0 0 12px rgba(3, 125, 156, 0.62),
        0 0 22px rgba(238, 253, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: rotate(45deg);
    mix-blend-mode: screen;
}

.chain-node::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 4px;
    background: #effdff;
    box-shadow: 0 0 18px rgba(239, 253, 255, 0.88);
    opacity: 0.76;
}

.node-a {
    --node-x: 48.611%;
    --node-y: 26.047%;
}

.node-b {
    --node-x: 65%;
    --node-y: 18.14%;
}

.node-c {
    --node-x: 83.889%;
    --node-y: 47.674%;
}

.node-d {
    --node-x: 70.278%;
    --node-y: 78.14%;
}

.node-e {
    --node-x: 53.889%;
    --node-y: 70.233%;
}

.node-f {
    --node-x: 40%;
    --node-y: 49.302%;
}

.node-g {
    --node-x: 91.111%;
    --node-y: 22.326%;
}

.node-h {
    --node-x: 34.444%;
    --node-y: 79.07%;
    opacity: 0.78;
}

.chain-node {
    left: calc(var(--node-x) - 21px);
    top: calc(var(--node-y) - 21px);
}

.chain-link {
    position: absolute;
    z-index: 2;
    width: var(--link-width);
    height: 6px;
    left: var(--link-left);
    top: var(--link-top);
    border-radius: 999px;
    background: transparent;
    filter: drop-shadow(0 0 8px rgba(3, 125, 156, 0.88));
    mix-blend-mode: screen;
    overflow: hidden;
    transform: rotate(var(--link-rotate));
    transform-origin: left center;
}

.link-a {
    --link-left: 51.667%;
    --link-top: 29.302%;
    --link-width: 15.148%;
    --link-rotate: -8.01deg;
}

.link-b {
    --link-left: 66.667%;
    --link-top: 20.465%;
    --link-width: 18.408%;
    --link-rotate: 20.68deg;
}

.link-c {
    --link-left: 83.889%;
    --link-top: 47.674%;
    --link-width: 14.65%;
    --link-rotate: 150.71deg;
}

.link-d {
    --link-left: 71.111%;
    --link-top: 77.674%;
    --link-width: 15.092%;
    --link-rotate: -173.66deg;
}

.link-e {
    --link-left: 56.111%;
    --link-top: 70.698%;
    --link-width: 14.055%;
    --link-rotate: -161.57deg;
}

.link-f {
    --link-left: 42.778%;
    --link-top: 52.093%;
    --link-width: 10.424%;
    --link-rotate: -31.49deg;
}

.link-g {
    --link-left: 51.667%;
    --link-top: 29.302%;
    --link-width: 22.619%;
    --link-rotate: 30.72deg;
}

.link-h {
    --link-left: 66.667%;
    --link-top: 20.465%;
    --link-width: 14.371%;
    --link-rotate: 71.99deg;
}

.link-i {
    --link-left: 83.889%;
    --link-top: 47.674%;
    --link-width: 9.425%;
    --link-rotate: -39.98deg;
}

.link-j {
    --link-left: 42.778%;
    --link-top: 52.093%;
    --link-width: 8.105%;
    --link-rotate: 56.75deg;
}

.chain-signal {
    position: absolute;
    left: -42%;
    top: 50%;
    width: 34%;
    min-width: 52px;
    height: 100%;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(3, 125, 156, 0.12) 12%,
            rgba(3, 125, 156, 0.92) 38%,
            rgba(233, 253, 255, 1) 50%,
            rgba(3, 125, 156, 0.92) 62%,
            rgba(3, 125, 156, 0.12) 88%,
            transparent 100%
        );
    box-shadow:
        0 0 8px rgba(3, 125, 156, 0.86),
        0 0 15px rgba(233, 253, 255, 0.52);
    transform: translateY(-50%);
    animation: signal-travel 2.9s linear infinite;
}

.link-b .chain-signal {
    animation-delay: 0.42s;
}

.link-c .chain-signal {
    animation-delay: 0.84s;
}

.link-d .chain-signal {
    animation-delay: 1.26s;
}

.link-e .chain-signal {
    animation-delay: 1.68s;
}

.link-f .chain-signal {
    animation-delay: 2.1s;
}

.link-g .chain-signal {
    animation-delay: 2.52s;
}

.link-h .chain-signal {
    animation-delay: 2.94s;
}

.link-i .chain-signal {
    animation-delay: 3.36s;
}

.link-j .chain-signal {
    animation-delay: 3.78s;
}

@keyframes signal-travel {
    0% {
        left: -46%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    74% {
        opacity: 1;
    }
    100% {
        left: 104%;
        opacity: 0;
    }
}

.explorer-toolbar,
.blockchain-search,
.explorer-grid,
.results-layout,
.data-panels {
    margin-top: 18px;
}

.explorer-toolbar {
    display: grid;
    grid-template-columns: minmax(190px, 240px) 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 12, 18, 0.82);
    backdrop-filter: blur(12px);
}

.field {
    display: grid;
    gap: 7px;
}

.field span,
.panel-label,
.summary-list dt {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.field select,
.field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.44);
    color: #ffffff;
    padding: 0 12px;
    font-size: 0.98rem;
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: #85dcff;
    box-shadow: 0 0 0 3px rgba(133, 220, 255, 0.14);
}

.toolbar-actions {
    display: flex;
    gap: 10px;
}

.toolbar-actions button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: #f7fbff;
    color: #06111c;
    padding: 0 15px;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.blockchain-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 16px 18px;
    border: 1px solid rgba(158, 231, 255, 0.18);
    border-radius: 8px;
    background: rgba(7, 12, 18, 0.72);
}

.blockchain-search button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid rgba(158, 231, 255, 0.38);
    border-radius: 6px;
    background: rgba(3, 125, 156, 0.22);
    color: #e8fbff;
    font-weight: 800;
    cursor: pointer;
}

.blockchain-search button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.search-result-panel {
    margin-top: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(158, 231, 255, 0.24);
    border-radius: 8px;
    background: rgba(7, 12, 18, 0.88);
}

.search-result-panel[hidden] {
    display: none;
}

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

.search-result-item {
    min-width: 0;
}

.search-result-item span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.search-result-item strong,
.search-result-item a {
    display: block;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 0.9rem;
}

.search-result-item a {
    color: #9ee7ff;
}

.toolbar-actions button:hover {
    background: #9ee7ff;
    transform: translateY(-1px);
}

.toolbar-actions button:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.explorer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.metric-panel,
.result-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 12, 18, 0.84);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.metric-panel {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 18px;
}

.metric-panel strong {
    min-height: 38px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.metric-panel small {
    color: rgba(255, 255, 255, 0.66);
}

.metric-secondary {
    color: #9ee7ff;
    font-size: 0.82rem;
}

.results-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    gap: 14px;
}

.data-panels {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
    gap: 14px;
}

.result-panel {
    min-height: 240px;
    padding: 18px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.panel-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.12rem;
    letter-spacing: 0;
}

.panel-heading span {
    color: #9ee7ff;
    font-size: 0.86rem;
    white-space: nowrap;
}

.summary-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.summary-list div {
    display: grid;
    gap: 5px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-list dd {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.summary-address-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.summary-address-row > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.summary-address-actions {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
}

.summary-icon-button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(158, 231, 255, 0.24);
    border-radius: 8px;
    background: rgba(158, 231, 255, 0.08);
    color: #9ee7ff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.summary-icon-button:hover {
    border-color: rgba(158, 231, 255, 0.62);
    background: rgba(158, 231, 255, 0.16);
}

.summary-icon-button[hidden] {
    display: none;
}

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

.nft-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 74px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.nft-item img,
.nft-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(158, 231, 255, 0.16);
}

.nft-item strong,
.nft-item span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nft-item strong {
    color: #ffffff;
    font-size: 0.94rem;
}

.nft-item span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 22px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}

.asset-list,
.history-list {
    display: grid;
    gap: 10px;
}

.asset-item,
.history-item {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.asset-item {
    grid-template-columns: 36px minmax(0, 1fr) auto;
}

.asset-logo,
.asset-logo-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(158, 231, 255, 0.14);
}

.asset-copy,
.history-main {
    min-width: 0;
}

.asset-copy strong,
.asset-copy span,
.asset-value strong,
.asset-value span,
.history-main strong,
.history-main span {
    display: block;
}

.asset-copy span,
.asset-value span,
.history-main span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.asset-value {
    text-align: right;
}

.history-item {
    grid-template-columns: minmax(0, 1fr) auto;
}

.history-main strong,
.history-main span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-meta {
    text-align: right;
}

.history-meta strong,
.history-meta span {
    display: block;
}

.history-meta span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
}

.history-link {
    color: #9ee7ff;
    text-decoration: none;
}

@media (max-width: 920px) {
    .explorer-hero,
    .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .explorer-copy h1 {
        font-size: 31px;
    }

    .chain-visual {
        opacity: 0.58;
        transform: translateX(110px);
    }

    .explorer-toolbar,
    .explorer-grid,
    .results-layout,
    .data-panels {
        grid-template-columns: 1fr;
    }

    .search-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbar-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .blockchain-shell {
        width: 100%;
        padding: 18px 10px 48px;
    }

    .explorer-hero,
    .explorer-toolbar,
    .metric-panel,
    .result-panel {
        padding: 14px;
    }

    .explorer-copy h1 {
        font-size: 27px;
    }

    .chain-visual {
        opacity: 0.36;
        transform: translateX(170px) scale(0.92);
        transform-origin: right center;
    }

    .toolbar-actions,
    .nft-list {
        grid-template-columns: 1fr;
    }

    .blockchain-search,
    .search-result-grid {
        grid-template-columns: 1fr;
    }

    .blockchain-search button {
        width: 100%;
    }

    .asset-item,
    .history-item {
        grid-template-columns: 1fr;
    }

    .asset-logo,
    .asset-logo-placeholder {
        display: none;
    }

    .asset-value,
    .history-meta {
        text-align: left;
    }

    .summary-address-row {
        align-items: flex-start;
    }
}

/* =========================================================
   SMART CONTRACTS GEOMETRY ALIGNMENT
   ========================================================= */

.explorer-hero {
    min-height: 230px;

    box-shadow:
        0 0 18px rgba(3, 125, 156, 0.55),
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    box-sizing: border-box;
}

.explorer-copy {
    max-width: 560px;
}

.blockchain-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 10px;
    padding: 7px 14px;

    border: 1px solid rgba(232, 251, 255, 0.34);
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.62);
    color: #e8fbff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    box-sizing: border-box;
    backdrop-filter: blur(6px);
}

.blockchain-hero-badge {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 20;

    min-height: 44px;
    margin: 0;
    padding: 10px 18px;
    gap: 10px;

    background: rgba(0, 0, 0, 0.38);

    backdrop-filter: blur(6px);
}

.blockchain-hero-badge img {
    width: 16px;
    height: 16px;
}

.blockchain-hero-badge span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.explorer-copy h1 {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: none;
}

.hero-text {
    max-width: 340px;

    font-size: 15px;
    line-height: 1.55;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.network-status {
    position: absolute;
    right: 22px;
    bottom: 30px;
    z-index: 5;

    align-self: auto;
    justify-content: center;
    gap: 9px;

    width: 148px;
    min-width: 0;
    min-height: 34px;
    padding: 7px 12px;

    border: 1px solid rgba(232, 251, 255, 0.34);
    border-radius: 9px;

    background: rgba(15, 18, 22, 0.86);
    color: #5dff8b;

    font-size: 12px;
    font-weight: 650;
    line-height: 1.2;

    box-shadow:
        0 0 14px rgba(3, 125, 156, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

.network-status .status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;

    background: #5dff8b;
    box-shadow: 0 0 16px rgba(93, 255, 139, 0.76);
}

.network-status[data-status="loading"] {
    color: #8feeff;
}

.network-status[data-status="loading"] .status-dot {
    background: #06d9ff;
    box-shadow: 0 0 16px rgba(6, 217, 255, 0.78);
}

.network-status[data-status="error"] {
    color: #ff7777;
}

.network-status[data-status="error"] .status-dot {
    background: #ff6b6b;
    box-shadow: 0 0 16px rgba(255, 107, 107, 0.72);
}


.blockchain-intro {
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 92px;
    margin: 26px 0 0;
    padding: 16px 24px;

    border: 2px solid #037d9c;
    border-radius: 15px;

    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.04)),
        radial-gradient(circle at 78% 48%, rgba(3, 125, 156, 0.42), transparent 38%),
        linear-gradient(180deg, rgba(3, 125, 156, 0.38), rgba(4, 22, 32, 0.84)),
        #080a0d;

    box-shadow:
        0 0 16px rgba(3, 125, 156, 0.48),
        0 10px 24px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    box-sizing: border-box;
}

.blockchain-intro::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 32%);

    pointer-events: none;
}

.blockchain-intro h2,
.blockchain-intro p {
    position: relative;
    z-index: 2;
}

.blockchain-intro h2 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.blockchain-intro p {
    max-width: none;
    margin: 0;

    color: #e8fbff;

    font-size: 13px;
    line-height: 1.4;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.blockchain-explorer-content {
    padding: 20px;

    border: 1px solid rgba(6, 171, 212, 0.26);
    border-radius: 0 0 18px 18px;

    background: #080a0d;

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    box-sizing: border-box;
}

.blockchain-explorer-content .explorer-toolbar {
    margin-top: 0;
}

@media (max-width: 980px) {
    .network-status {
        position: relative;
        right: auto;
        bottom: auto;

        align-self: flex-start;

        margin-top: 12px;
    }
}

@media (max-width: 760px) {
    .blockchain-shell {
        padding: 20px 12px 50px;
    }

    .explorer-hero {
        min-height: auto;
        padding: 20px;
    }

    

    
}
