    .daily-metal-main {
        --dm-bg: #0f1729;
        --dm-border: rgba(255, 255, 255, 0.1);
        --dm-card: linear-gradient(180deg, rgba(29, 40, 58, 0.9), rgba(15, 23, 41, 0.86));
        --dm-text: #f8fafc;
        --dm-muted: #9fb1cb;
        --dm-up: #34d399;
        --dm-down: #f87171;
        background:
            radial-gradient(circle at 86% -10%, rgba(243, 180, 54, 0.2), transparent 36%),
            radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.13), transparent 38%),
            #0f1729;
        color: var(--dm-text);
        min-height: 100vh;
        padding: 7.1rem 0 3.7rem;
    }

    .dm-shell {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .dm-section {
        margin-top: 1.2rem;
        border: 1px solid var(--dm-border);
        border-radius: 1.3rem;
        background: var(--dm-card);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
        padding: 1.05rem;
    }

    .dm-hero h1 {
        margin: 0;
        font-size: clamp(1.55rem, 5vw, 2.5rem);
        line-height: 1.14;
        letter-spacing: -0.02em;
    }

    .dm-hero p {
        margin: 0.82rem 0 0;
        color: #d7e0ef;
        line-height: 1.72;
        max-width: 760px;
    }

    .dm-updated {
        display: inline-flex;
        align-items: center;
        margin-top: 0.88rem;
        padding: 0.4rem 0.72rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.87rem;
        color: #fde68a;
        font-weight: 600;
    }

    .dm-title {
        margin: 0 0 0.88rem;
        font-size: 1.15rem;
        line-height: 1.38;
        color: #f8fafc;
    }

    .dm-widgets {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .dm-widget {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        background: linear-gradient(160deg, rgba(24, 36, 56, 0.96), rgba(16, 26, 42, 0.95));
        padding: 0.95rem;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .dm-widget:hover {
        transform: translateY(-3px);
        border-color: rgba(243, 180, 54, 0.5);
    }

    .dm-widget h3 {
        margin: 0 0 0.65rem;
        font-size: 1.02rem;
        line-height: 1.35;
        color: #f8fafc;
    }

    .dm-price-block {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0.34rem 0.5rem;
        align-items: baseline;
        border-top: 1px dashed rgba(255, 255, 255, 0.13);
        padding: 0.58rem 0;
    }

    .dm-price-block:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .dm-label {
        margin: 0;
        color: var(--dm-muted);
        font-size: 0.86rem;
    }

    .dm-price {
        margin: 0;
        font-size: 0.98rem;
        font-weight: 700;
        color: #f8fafc;
    }

    .dm-change {
        border-radius: 999px;
        padding: 0.15rem 0.5rem;
        font-size: 0.82rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .dm-up {
        color: var(--dm-up);
        background: rgba(52, 211, 153, 0.15);
    }

    .dm-down {
        color: var(--dm-down);
        background: rgba(248, 113, 113, 0.15);
    }

    .dm-table-wrap {
        overflow-x: auto;
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(15, 23, 41, 0.45);
        margin-top: 0.2rem;
    }

    .dm-table {
        width: 100%;
        min-width: 660px;
        border-collapse: collapse;
    }

    .dm-table thead th {
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.01em;
        font-size: 0.82rem;
        color: #bac8dd;
        background: rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.8rem 0.92rem;
    }

    .dm-table tbody td {
        padding: 0.86rem 0.92rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #e8eef8;
        font-size: 0.93rem;
    }

    .dm-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .dm-num {
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
    }

    .dm-note {
        margin: 0;
        color: #c7d4e8;
        line-height: 1.72;
    }

    .dm-nav {
        margin-top: 0.9rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dm-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.68rem;
        padding: 0.82rem 0.94rem;
        border-radius: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.04);
        text-decoration: none;
        color: #e7eef9;
        transition: all 0.2s ease;
    }

    .dm-nav-link:hover {
        border-color: rgba(243, 180, 54, 0.46);
        background: rgba(243, 180, 54, 0.08);
        color: #fff;
        transform: translateY(-2px);
    }

    .dm-nav-link strong {
        font-size: 0.94rem;
        line-height: 1.4;
        font-weight: 600;
    }

    .dm-nav-link span {
        color: #99abc6;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .dm-jump-wrap {
        margin-top: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.04);
        padding: 0.92rem;
    }

    .dm-jump-label {
        display: block;
        margin-bottom: 0.52rem;
        color: #dbe4f4;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .dm-jump-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .dm-jump-input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0.75rem;
        background: rgba(15, 23, 41, 0.65);
        color: #f8fafc;
        min-height: 2.4rem;
        padding: 0.45rem 0.66rem;
        font-size: 0.92rem;
        outline: none;
    }

    .dm-jump-input:focus {
        border-color: rgba(243, 180, 54, 0.55);
        box-shadow: 0 0 0 3px rgba(243, 180, 54, 0.14);
    }

    .dm-jump-btn {
        border: 1px solid transparent;
        border-radius: 0.75rem;
        min-height: 2.4rem;
        background: linear-gradient(120deg, #e2a427 0%, #c88516 100%);
        color: #0f1729;
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .dm-jump-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(226, 164, 39, 0.26);
    }

    .dm-jump-note {
        margin: 0.56rem 0 0;
        color: #9fb1cb;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    @media (min-width: 760px) {
        .dm-shell {
            padding: 0 1.2rem;
        }

        .dm-section {
            padding: 1.2rem;
        }

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

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

        .dm-jump-row {
            grid-template-columns: 1fr auto;
        }

        .dm-jump-btn {
            min-width: 180px;
            padding: 0 1rem;
        }
    }

    /* Unit tabs styles */
    .gold-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .gold-filter-btn {
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: #dbe4f2;
        background: rgba(255, 255, 255, 0.04);
        padding: 0.4rem 0.72rem;
        border-radius: 999px;
        font-size: 0.82rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .gold-filter-btn:hover {
        border-color: rgba(243, 180, 54, 0.55);
        color: #fff;
    }

    .gold-filter-btn.active {
        background: linear-gradient(120deg, #e2a427 0%, #c88516 100%);
        border-color: transparent;
        color: #0f1729;
        box-shadow: 0 8px 18px rgba(226, 164, 39, 0.26);
    }