:root {
    --df-bg: #050505;
    --df-orange: #ff6a00;
    --df-dark-orange: #3d1a08;
    --df-text-muted: #888;
    --df-white: #ffffff;
}

.df-dashboard {
    background-color: var(--df-bg);
    background-image: radial-gradient(circle at top right, var(--df-dark-orange) 0%, transparent 55%);
    min-height: 100vh;
    display: flex;
    color: var(--df-white);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 20px;
}

/* Sidebar Navigation */
.df-sidebar {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 100px;
}

.df-nav-item {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center; justify-content: center;
    border: 1px solid #222;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.df-nav-item svg { width: 18px; height: 18px; }
.df-nav-item:focus-visible { outline: 2px solid rgba(255,255,255,0.25); outline-offset: 3px; }
.df-nav-item:hover { transform: translateY(-1px); }

.df-glow-orange { color: var(--df-orange); border-color: rgba(255,106,0,0.25); }
.df-glow-red { color: #ff4d4d; border-color: rgba(255,77,77,0.22); }
.df-glow-green { color: #40ffaa; border-color: rgba(64,255,170,0.22); }
.df-glow-cyan { color: #40e0ff; border-color: rgba(64,224,255,0.22); }

.df-glow-orange.active { box-shadow: 0 0 18px rgba(255,106,0,0.45); }
.df-glow-red.active { box-shadow: 0 0 18px rgba(255,77,77,0.42); }
.df-glow-green.active { box-shadow: 0 0 18px rgba(64,255,170,0.38); }
.df-glow-cyan.active { box-shadow: 0 0 18px rgba(64,224,255,0.40); }

.df-sidebar-footer {
    margin-top: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    background: #0c0c0c;
    transition: 0.3s;
}

.df-sidebar-footer svg { width: 18px; height: 18px; }
.df-sidebar-footer:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* Main Area */
.df-main { flex: 1; padding: 0 40px; }

.df-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.df-page-title { font-size: 42px; line-height: 1; margin: 0; }
.df-page-title span { font-weight: 300; color: var(--df-text-muted); }

.df-title-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.df-filters { display: flex; gap: 10px; }
.df-filter-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 10px 20px; border-radius: 12px; cursor: pointer;
}
.df-filter-btn.active { background: white; color: black; font-weight: 600; }

/* Dashboard Grid */
.df-grid {
    display: grid;
    grid-template-columns: 280px 280px 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
}

/* Stats Cards */
.df-card { border-radius: 35px; padding: 30px; position: relative; overflow: hidden; }

.df-mesh-orange {
    background: #000;
    background-image: radial-gradient(at top right, #ff6a00 0%, transparent 60%), radial-gradient(at bottom left, #111 0%, transparent 100%);
}

.df-mesh-orange-dark {
    background: #000;
    background-image: radial-gradient(at center, #ff6a00 0%, transparent 70%);
    opacity: 0.9;
}

.df-card label { color: rgba(255,255,255,0.5); font-size: 14px; }
.df-value { font-size: 34px; margin-top: 50px; font-weight: 700; }
.df-address { font-family: monospace; font-size: 24px; opacity: 0.8; }

.df-value-row {
    margin-top: 50px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.df-delta {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}

.df-delta.df-up {
    color: #40ffaa;
    background: rgba(64, 255, 170, 0.10);
    border-color: rgba(64, 255, 170, 0.22);
}

.df-delta.df-down {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.10);
    border-color: rgba(255, 77, 77, 0.22);
}

.df-flash-up {
    animation: dfFlashUp 650ms ease-out;
}

.df-flash-down {
    animation: dfFlashDown 650ms ease-out;
}

@keyframes dfFlashUp {
    0% { box-shadow: 0 0 0 rgba(64,255,170,0); }
    35% { box-shadow: 0 0 18px rgba(64,255,170,0.35); }
    100% { box-shadow: 0 0 0 rgba(64,255,170,0); }
}

@keyframes dfFlashDown {
    0% { box-shadow: 0 0 0 rgba(255,77,77,0); }
    35% { box-shadow: 0 0 18px rgba(255,77,77,0.35); }
    100% { box-shadow: 0 0 0 rgba(255,77,77,0); }
}

.df-share-val { font-size: 28px; margin-top: 10px; }

/* White Token Card */
.df-card-white {
    grid-column: span 2;
    background: white; color: black;
    border-radius: 40px; padding: 35px;
}

.df-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.df-table th { text-align: left; color: #888; font-size: 13px; padding-bottom: 15px; }
.df-table td { padding: 15px 0; border-top: 1px solid #f0f0f0; font-weight: 600; }
.df-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 10px; }
.btc { background: #f7931a; } .usdc { background: #2775ca; } .stx { background: #5546ff; }

.df-token-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.08);
}

.df-cell-num.df-up { color: #0f5132; }
.df-cell-num.df-down { color: #842029; }

/* Rewards Sidebar Panel */
.df-rewards-panel {
    grid-row: span 2;
    background: rgba(18, 12, 8, 0.9);
    border: 1px solid rgba(255,106,0,0.1);
    border-radius: 35px; padding: 30px;
}

.df-reward-row { color: var(--df-text-muted); font-size: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.df-reward-row.df-flex { display: flex; justify-content: space-between; align-items: center; }

.df-reward-val {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}

.df-reward-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.df-btn-stake { background: #f0f0f0; color: black; border: none; border-radius: 15px; padding: 18px; font-weight: 700; cursor: pointer; }
.df-btn-claim { background: transparent; border: 1px solid #333; color: white; border-radius: 15px; cursor: pointer; }

/* Accurate Chart Card */
.df-chart-container {
    grid-column: span 2;
    background: #0d0d0d;
}

.df-chart-svg-wrapper {
    position: relative;
    height: 150px;
    width: 100%;
    margin-top: 20px;
}

.df-chart-tag {
    position: absolute;
    right: 5%; top: 30%;
    background: var(--df-orange);
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .df-main { padding: 0 16px; }
    .df-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .df-filters { flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .df-dashboard { padding: 12px; }
    .df-sidebar { display: none; }
    .df-main { padding: 0; }
    .df-grid { grid-template-columns: 1fr; }
    .df-card-white { grid-column: span 1; }
    .df-rewards-panel { grid-row: auto; }
    .df-chart-container { grid-column: span 1; }
    .df-page-title { font-size: 34px; }
    .df-title-icon { width: 38px; height: 38px; }
    .df-value { margin-top: 24px; }
    .df-value-row { margin-top: 24px; }
}


:root {
    --nv-bg-black: #000000;
    --nv-text-white: #ffffff;
    --nv-text-muted: #888888;
}

.nv-transform-section {
    background-color: var(--nv-bg-black);
    color: var(--nv-text-white);
    padding: 120px 20px 0 20px; /* Top padding for text, bottom 0 for image alignment */
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    text-align: center;
}

.nv-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scmlm-cta-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.scmlm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--df-orange);
    color: #050505;
    text-decoration: none;
    font-weight: 800;
}

.scmlm-cta-link {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-weight: 700;
}

.scmlm-cta-link:hover { text-decoration: underline; }

/* FAQ */
.scmlm-faq-section {
    background: #000000;
    color: #ffffff;
    padding: 90px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.scmlm-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.scmlm-faq-header { margin-bottom: 26px; text-align: center; }

.scmlm-faq-title {
    font-size: 44px;
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.scmlm-faq-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

.scmlm-faq-list {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.scmlm-faq-item {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 14px 16px;
}

.scmlm-faq-q {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.scmlm-faq-item summary::-webkit-details-marker { display: none; }

.scmlm-faq-a {
    padding-top: 10px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
}

.scmlm-faq-cta {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.scmlm-faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 800;
}

.scmlm-faq-btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
    .scmlm-faq-list { grid-template-columns: 1fr; }
    .scmlm-faq-title { font-size: 34px; }
}

/* Typography Styling */
.nv-content {
    margin-bottom: 80px;
}

.nv-title {
    font-size: clamp(32px, 5vw, 48px); /* Responsive font sizing */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.nv-subtitle {
    font-size: 16px;
    color: var(--nv-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Image Wrapper Styling */
.nv-visual-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* Optional: adds a subtle glow behind the image similar to the original */
    box-shadow: 0 -50px 100px -50px rgba(139, 92, 246, 0.1); 
}

.nv-bottom-image {
    width: 100%;
    max-width: 1000px; /* Adjust based on your image dimensions */
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: -5px; 
}

.nv-bottom-image_1{
     position: absolute;
    z-index: 1;
    margin: -40px;
}


.pw-card-content{
    z-index: 2;
}

/* Animation classes (triggered by JS) */
.nv-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nv-transform-section {
        padding-top: 80px;
    }
    .nv-title {
        font-size: 28px;
    }
}


:root {
    --pw-black: #000000;
    --pw-card-bg: #141414;
    --pw-text-white: #ffffff;
    --pw-text-muted: #888888;
    --pw-accent-gradient: linear-gradient(135deg, #3b4bad 0%, #1a1a1a 100%);
}

.pw-section {
    background-color: var(--pw-black);
    color: var(--pw-text-white);
    padding: 100px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pw-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pw-header {
    text-align: center;
    margin-bottom: 60px;
}

.pw-main-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 15px;
}

.pw-subtitle {
    color: var(--pw-text-muted);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.pw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.pw-card {
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
}

.pw-bg-dark {
    background-color: var(--pw-card-bg);
}

/* Specific Card Placements */
.pw-tall-middle {
    grid-row: 1 / 2;
}

.pw-highlight-card {
    grid-column: 3;
    grid-row: 1 / 3; /* Spans full height */
    background: var(--pw-accent-gradient);
    justify-content: flex-start;
}

/* Content Styling */
.pw-number {
    font-size: 56px;
    font-weight: 400;
    margin: 0 0 40px 0;
    letter-spacing: -2px;
}

.pw-label {
    color: var(--pw-text-muted);
    font-size: 14px;
    margin: 0;
}

.pw-highlight-card .pw-label {
    color: var(--pw-text-white);
    opacity: 0.8;
}

/* Decorative elements for the right card */
.pw-visual-elements {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.2), transparent);
}

/* Responsive */
@media (max-width: 900px) {
    .pw-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pw-highlight-card {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .pw-grid {
        grid-template-columns: 1fr;
    }
    .pw-highlight-card {
        grid-column: span 1;
    }
}


:root {
    --mlm-bg: #000000;
    --mlm-card: #121212;
    --mlm-text: #ffffff;
    --mlm-text-dim: #9ca3af;
    --mlm-blue-grad: linear-gradient(135deg, #2b3b8c 0%, #0d0d1a 100%);
    --mlm-radius: 12px;
}

.mlm-feat-section {
    background-color: var(--mlm-bg);
    color: var(--mlm-text);
    padding: 80px 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.mlm-feat-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mlm-feat-header {
    text-align: center;
    margin-bottom: 60px;
}

.mlm-feat-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Toggle Switch */
.mlm-feat-toggle-wrapper {
    display: flex;
    justify-content: center;
}

.mlm-feat-toggle {
    background: #1a1a1a;
    padding: 4px;
    border-radius: 100px;
    display: flex;
}

.mlm-feat-toggle button {
    background: transparent;
    border: none;
    color: var(--mlm-text-dim);
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.mlm-feat-toggle button.active {
    background: white;
    color: black;
}

/* Grid System */
.mlm-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Feature Card */
.mlm-feat-card {
    background: var(--mlm-card);
    border-radius: var(--mlm-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border: 1px solid #1f1f1f;
    transition: transform 0.3s ease;
}

.mlm-feat-card:hover {
    transform: translateY(-5px);
}

.mlm-feat-highlight {
    background: var(--mlm-blue-grad);
    border: none;
}

.mlm-feat-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mlm-text);
}

.mlm-feat-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mlm-feat-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.mlm-feat-role {
    display: block;
    font-size: 13px;
    color: var(--mlm-text-dim);
}

.mlm-feat-logo {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .mlm-feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .mlm-feat-grid { grid-template-columns: 1fr; }
    .mlm-feat-title { font-size: 32px; }
}
