* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #0a0a1a;
    --card: rgba(30, 30, 60, 0.6);
    --accent: #6366f1;
    --accent2: #818cf8;
    --gold: #fbbf24;
    --green: #22c55e;
    --text: #fff;
    --text2: #a0a0c0
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden
}

.splash {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s
}

.splash.hide {
    opacity: 0;
    pointer-events: none
}

.splash-logo {
    font-size: 80px;
    animation: pulse 1.5s infinite
}

.splash-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    margin: 20px 0;
    background: linear-gradient(90deg, #818cf8, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.splash-bar {
    width: 200px;
    height: 4px;
    background: #1a1a3a;
    border-radius: 2px;
    overflow: hidden
}

.splash-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    width: 0;
    animation: load 2s forwards
}

@keyframes load {
    to {
        width: 100%
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.app {
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 100px;
    display: none
}

.app.show {
    display: block
}

.bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4
}

.o1 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: -100px;
    right: -100px;
    animation: float 8s infinite
}

.o2 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    bottom: -150px;
    left: -150px;
    animation: float 10s infinite reverse
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 30px)
    }
}

#particles {
    position: absolute;
    inset: 0
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #6366f1;
    border-radius: 50%;
    opacity: .6;
    animation: rise 10s infinite
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    50% {
        opacity: .8
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-icon {
    font-size: 28px
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 600
}

.logo-text .hl {
    color: var(--accent2)
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .2);
    padding: 6px 12px;
    border-radius: 20px
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.status-text {
    font-size: 12px;
    color: var(--green);
    font-weight: 600
}

.glass {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px
}

.balance {
    text-align: center;
    padding: 25px;
    margin-bottom: 20px
}

.balance-label {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 8px
}

.balance-usd {
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.balance-crypto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--text2)
}

.balance-crypto img {
    width: 20px;
    height: 20px
}

.balance-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
    color: var(--green);
    font-size: 14px
}

.neural {
    position: relative;
    height: 200px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

#neural-canvas {
    width: 100%;
    height: 100%
}

.floating-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.fcoin {
    position: absolute;
    font-size: 24px;
    animation: coinFloat 3s forwards
}

@keyframes coinFloat {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0)
    }

    30% {
        opacity: 1;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: translateY(-150px) scale(.5)
    }
}

.coins-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch
}

.coins-scroll::-webkit-scrollbar {
    display: none
}

.coin-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(30, 30, 60, .5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: .3s
}

.coin-item.active {
    border-color: var(--accent);
    background: rgba(99, 102, 241, .2)
}

.coin-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%
}

.coin-info {
    display: flex;
    flex-direction: column
}

.coin-name {
    font-weight: 600;
    font-size: 14px
}

.coin-price {
    font-size: 12px;
    color: var(--text2)
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px
}

.stat {
    padding: 16px;
    text-align: center
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px
}

.stat-label {
    font-size: 12px;
    color: var(--text2);
    display: block
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 4px
}

.stat-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    margin-top: 6px
}

.chart {
    padding: 20px;
    margin-bottom: 20px
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.chart-header h3 {
    font-size: 16px
}

.chart-badge {
    background: rgba(34, 197, 94, .2);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px
}

#chart {
    width: 100%;
    height: 100px
}

.map {
    padding: 20px;
    margin-bottom: 20px
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.map-header h3 {
    font-size: 16px
}

.nodes-count {
    font-size: 12px;
    color: var(--accent2)
}

.world-map {
    position: relative;
    height: 120px;
    background: rgba(99, 102, 241, .1);
    border-radius: 12px;
    overflow: hidden
}

.map-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent2);
    border-radius: 50%;
    animation: mapPulse 2s infinite
}

@keyframes mapPulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.5)
    }
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px
}

.btn {
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.btn-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000
}

.btn-premium:active {
    transform: scale(.98)
}

.btn-withdraw {
    background: rgba(60, 60, 80, .5);
    color: var(--text2);
    border: 1px solid rgba(255, 255, 255, .1)
}

.btn-withdraw.disabled {
    opacity: .6
}

.btn-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    position: absolute;
    bottom: 6px
}

.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 40, .95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    padding: 12px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.nav-item {
    background: none;
    border: none;
    color: var(--text2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: .3s;
    padding: 8px 16px;
    border-radius: 12px
}

.nav-item.active {
    color: var(--accent2);
    background: rgba(99, 102, 241, .15)
}

.nav-icon {
    font-size: 22px
}

.nav-label {
    font-size: 11px
}

.screen {
    display: none;
    padding-top: 10px
}

.screen.active {
    display: block
}

.screen-header {
    text-align: center;
    margin-bottom: 25px
}

.screen-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    margin-bottom: 8px
}

.screen-header p {
    color: var(--text2);
    font-size: 14px
}

.ref-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-bottom: 20px
}

.ref-stat {
    text-align: center
}

.ref-stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent2);
    display: block
}

.ref-stat-label {
    font-size: 12px;
    color: var(--text2)
}

.ref-link {
    padding: 20px;
    margin-bottom: 20px
}

.ref-link h3 {
    margin-bottom: 12px;
    font-size: 14px
}

.ref-link-box {
    display: flex;
    gap: 8px
}

.ref-link-box input {
    flex: 1;
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px;
    color: var(--text);
    font-size: 12px
}

.copy-btn {
    background: var(--accent);
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer
}

.share-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.share-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.share-btn.tg {
    background: #0088cc;
    color: #fff
}

.share-btn.wa {
    background: #25d366;
    color: #fff
}

.ref-list {
    padding: 20px
}

.ref-list h3 {
    margin-bottom: 15px
}

.ref-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.ref-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.ref-info {
    flex: 1
}

.ref-name {
    display: block;
    font-weight: 600
}

.ref-date {
    font-size: 12px;
    color: var(--text2)
}

.ref-earned {
    color: var(--green);
    font-weight: 600
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal.show {
    display: flex
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8)
}

.modal-content {
    position: relative;
    max-width: 360px;
    width: 100%;
    padding: 30px;
    text-align: center;
    animation: modalIn .3s
}

@keyframes modalIn {
    from {
        transform: scale(.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text2);
    font-size: 20px;
    cursor: pointer
}

.premium-crown {
    font-size: 50px;
    display: block;
    margin-bottom: 10px
}

.premium-header h2 {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.premium-features {
    list-style: none;
    text-align: left;
    margin: 20px 0
}

.premium-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.premium-price {
    margin: 20px 0
}

.old-price {
    text-decoration: line-through;
    color: var(--text2);
    margin-right: 10px
}

.new-price {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold)
}

.discount {
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    margin-left: 10px
}

.premium-buy {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    cursor: pointer
}

.withdraw-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px
}

.withdraw-warning {
    background: rgba(239, 68, 68, .2);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left
}

.withdraw-warning span {
    font-size: 24px
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #a855f7);
    width: 84%;
    transition: width 1s
}

.progress-text {
    font-size: 14px;
    color: var(--text2)
}

/* Bonus Banner */
.bonus-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(34, 197, 94, .1));
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 15px;
    animation: glow 2s infinite
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(34, 197, 94, .3)
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, .5)
    }
}

.bonus-icon {
    font-size: 28px
}

.bonus-info {
    display: flex;
    flex-direction: column
}

.bonus-title {
    font-weight: 700;
    color: var(--green)
}

.bonus-time {
    font-size: 12px;
    color: var(--text2)
}

/* Wallet Items */
.wallet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    margin-bottom: 10px
}

.wallet-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%
}

.wallet-info {
    flex: 1
}

.wallet-name {
    display: block;
    font-weight: 600
}

.wallet-amount {
    font-size: 12px;
    color: var(--text2)
}

.wallet-usd {
    font-weight: 700;
    color: var(--accent2)
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    opacity: 0;
    transition: .3s;
    z-index: 2000
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

/* Bonus Card */
.bonus-card {
    padding: 20px;
    margin-bottom: 20px
}

.bonus-card.active {
    background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(99, 102, 241, .2));
    border-color: var(--green)
}

.bonus-status {
    display: flex;
    align-items: center;
    gap: 15px
}

.bonus-big-icon {
    font-size: 40px
}

.bonus-text {
    display: flex;
    flex-direction: column
}

.bonus-main {
    font-size: 18px;
    font-weight: 700
}

.bonus-main.active {
    color: var(--green)
}

.bonus-desc {
    font-size: 13px;
    color: var(--text2)
}

.ref-bonus {
    color: var(--green);
    font-size: 13px;
    font-weight: 600
}

/* Buttons */
.btn-simulate {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    margin: 15px 0
}

.btn-reset {
    background: rgba(239, 68, 68, .2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .3);
    margin-top: 20px
}

.stat-badge.boost {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    animation: pulse 1s infinite
}

/* Info Screen Styles */
.info-card {
    padding: 20px;
    margin-bottom: 16px
}

.info-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.info-intro {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px
}

.info-highlight {
    font-size: 15px;
    line-height: 1.6
}

.info-highlight .accent {
    color: var(--accent2);
    font-weight: 700
}

.info-title {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--accent2)
}

.info-step {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start
}

.step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px
}

.info-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text2)
}

.info-step p b {
    color: var(--text);
    font-weight: 600
}

.info-step p i {
    color: var(--accent2);
    font-style: normal
}

.info-card.legal {
    border-left: 3px solid var(--green)
}

.info-list {
    list-style: none;
    padding: 0
}

.info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text2)
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700
}

.info-list li b {
    color: var(--text);
    font-weight: 600
}

.info-date {
    color: var(--accent2);
    font-weight: 600
}

.highlight-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, .2), rgba(168, 85, 247, .2));
    border: 1px solid rgba(99, 102, 241, .3)
}

.info-key {
    font-size: 14px;
    line-height: 1.7;
    text-align: center
}

.final-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, .1), rgba(245, 158, 11, .1));
    border: 1px solid rgba(251, 191, 36, .2);
    text-align: center
}

.info-summary {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.info-summary b {
    color: var(--gold)
}

.info-slogan {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px
}

.info-welcome {
    font-size: 14px;
    color: var(--text2)
}

/* --- Mining Area & Cryptonite Button --- */
.mining-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0 100px 0;
    position: relative;
    min-height: 250px;
}

.coin-btn {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #4f46e5, #312e81);
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.coin-btn:active {
    transform: scale(0.95);
}

.coin-inner {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6366f1, #4338ca);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

.coin-symbol {
    font-size: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: float-symbol 3s ease-in-out infinite;
}

.coin-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: pulse-ring 2s infinite;
    pointer-events: none;
}

.mining-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mining-text b {
    color: #818cf8;
    text-shadow: 0 0 10px rgba(129, 140, 248, 00.5);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes float-symbol {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- Floating Numbers --- */
.float-num {
    position: fixed;
    color: #4ade80;
    font-weight: bold;
    font-size: 24px;
    pointer-events: none;
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* --- MEV Report --- */
.mev-report {
    padding: 10px;
}

.mev-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
}

.mev-value {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.mev-value.highlight {
    color: #4ade80;
}

.mev-log {
    margin-top: 12px;
    height: 80px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.mev-log::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
}

.log-entry {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: slide-down 0.3s ease-out;
}

.log-time {
    color: #6366f1;
    margin-right: 5px;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Premium Text Polish --- */
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.balance-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    opacity: 0.7;
}

.balance-usd {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}