/* ============================================================
   NFT LIVE TICKER
   ============================================================ */
#nft-live-ticker {
    display: flex;
    align-items: center;
    background: #13161D;
    color: #ccc;
    font-size: 12px;
    height: 36px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 9999;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.nft-ticker-left {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    white-space: nowrap;
    border-right: 1px solid #2a2d35;
    height: 100%;
    flex-shrink: 0;
}

.nft-live-badge {
    color: #ED3410;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.nft-ticker-right {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.nft-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: nft-scroll 50s linear infinite;
}

.nft-ticker-track:hover {
    animation-play-state: paused;
}

.nft-ticker-item {
    padding: 0 24px;
    border-right: 1px solid #2a2d35;
    font-size: 12px;
}

.nft-ticker-item strong {
    color: #fff;
    margin: 0 4px;
}

@keyframes nft-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nft-up   { color: #00b894; }
.nft-down { color: #d63031; }

@media (max-width: 768px) {
    .nft-ticker-left span:not(.nft-live-badge) {
        display: none;
    }
}

/* ============================================================
   NFT RANKINGS SECTION
   ============================================================ */
.nft-rankings-wrap {
    padding: 32px 24px;
    background: #fff;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nft-rankings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.nft-rankings-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 0 !important;
}

.nft-updated {
    font-size: 12px;
    color: #999;
}

.nft-stat-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.nft-stat-card {
    flex: 1;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #eee;
}

.nft-stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nft-stat-card strong {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.nft-table-wrap {
    overflow-x: auto;
}

.nft-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.nft-table thead tr {
    border-bottom: 2px solid #eee;
}

.nft-table th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

.nft-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    vertical-align: middle;
}

.nft-table tbody tr:hover td {
    background: #fafafa;
}

.nft-col-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.nft-col-name img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nft-hidden { display: none !important; }

.nft-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.nft-load-more-btn {
    background: #ED3410;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.nft-load-more-btn:hover { background: #c42b0d; }
.nft-load-more-btn.nft-loaded { display: none; }

.nft-fallback {
    padding: 40px;
    text-align: center;
    color: #999;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nft-stat-cards      { flex-direction: column; }
    .nft-stat-card strong { font-size: 18px; }
    .nft-rankings-wrap   { padding: 20px 16px; }
}
