:root {
    --bg-dark: #070a0d;
    --bg-card: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-green: #00ff88;
    --neon-green-glow: rgba(0, 255, 136, 0.3);
    --neon-green-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    --text-white: #ffffff;
    --text-dim: #808e9b;
    --text-accent: #a8ffca;
    --red: #ff4d4d;
    --sidebar-width: 240px;
    --gold: #f3ba2f;
    --purple: #a55eea;
    --blue: #45aaf2;
    --orange: #fa8231;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 30%),
        radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,0.1) 100%, transparent),
        radial-gradient(1.5px 1.5px at 100px 100px, rgba(0, 255, 136, 0.15) 100%, transparent),
        radial-gradient(2px 2px at 200px 150px, rgba(255,255,255,0.05) 100%, transparent);
    background-size: 100% 100%, 100% 100%, 50px 50px, 150px 150px, 250px 250px;
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    left: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--neon-green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 6px;
    box-shadow: var(--neon-green-shadow);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dim);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-item i {
    width: 20px;
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
    background: var(--bg-card);
    border-color: var(--glass-border);
}

.nav-item.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1rem;
}

.mobile-logo {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.asset-selector, .referral-link, .balance-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    background: var(--bg-card);
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    cursor: pointer;
}

.asset-selector:hover, .referral-link:hover {
    border-color: var(--neon-green);
}

.balance-display i {
    color: #ffcc00; /* Gold */
}

.balance-display span {
    color: var(--text-white);
    font-weight: 600;
}

.btn-connect {
    background: var(--neon-green);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: var(--neon-green-shadow);
    transition: transform 0.2s;
}

.btn-connect:active {
    transform: scale(0.95);
}

/* Cards */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

/* Chart Card */
.chart-card {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.asset-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--neon-green-shadow);
}

.asset-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.asset-price .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-green);
}

.asset-price .change {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.change.positive { color: var(--neon-green); }

.chart-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-line {
    filter: drop-shadow(0 0 8px var(--neon-green));
}

.pulse {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.ai-status {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--neon-green);
    font-weight: 600;
}

.scanner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sidebar Stats */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stats-card .card-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.stats-card .card-value {
    font-size: 1.75rem;
    font-weight: 800;
}

.stats-card.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(0, 255, 136, 0.3);
}

.status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confidence-circle {
    text-align: center;
}

.confidence-circle .label { font-size: 0.65rem; color: var(--text-dim); }
.confidence-circle .value { font-size: 1.25rem; font-weight: 800; color: var(--neon-green); }

/* Trading History */
.trading-history {
    grid-column: 1 / 2;
}

.trading-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.ai-buy {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-close-trade {
    width: 100%;
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-close-trade:hover {
    background: var(--neon-green);
    color: #000;
}

/* Win Rate & Daily Gain */
.win-rate-card, .daily-gain-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.up { color: var(--neon-green); font-size: 0.75rem; }
.big-value { font-size: 2.5rem; font-weight: 800; margin: 1rem 0; }
.confidence-badge { font-size: 0.7rem; font-weight: 800; background: var(--neon-green); color: #000; padding: 0.25rem 0.5rem; border-radius: 4px; display: inline-block; width: max-content; }

.mini-graph-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 1rem;
}

.mini-graph-bars .bar {
    flex: 1;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 4px;
}

.mini-graph-bars .bar.highlight {
    background: var(--neon-green);
    box-shadow: var(--neon-green-shadow);
}

/* Notification Overlay - Moved to Bottom Right */
.notification-overlay {
    position: fixed;
    bottom: 100px;
    right: 20px;
    left: auto;
    transform: none;
    z-index: 200;
    width: auto;
    max-width: 400px;
    padding: 0;
}

.deposit-card {
    background: rgba(10, 25, 20, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid var(--neon-green);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    animation: slide-in-right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

@keyframes slide-in-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.btn-close-notif {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px;
}

.btn-close-notif:hover {
    color: var(--neon-green);
}

.dep-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    color: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dep-content h4 { font-size: 0.9rem; color: var(--text-white); margin-bottom: 0.25rem; font-weight: 400; }
.dep-value { font-size: 1.5rem; font-weight: 800; color: var(--neon-green); }

.btn-detail {
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dim);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Bottom Connect Button */
.btn-bottom-connect {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-dim);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-bottom-connect .bsc-icon {
    width: 28px;
    height: 28px;
    background: #f3ba2f; /* Binance Logo Color */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.btn-bottom-connect:hover {
    border-color: var(--neon-green);
    color: var(--text-white);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    justify-content: space-around;
    padding: 1rem;
    z-index: 100;
}

.mobile-nav a {
    color: var(--text-dim);
    transition: 0.3s;
}

.mobile-nav a.active {
    color: var(--neon-green);
}

/* Responsive Queries */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .chart-card { grid-row: auto; }
}

@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; padding: 1rem; }
    .mobile-logo { display: block; font-size: 1.5rem; letter-spacing: 2px; }
    .top-bar { justify-content: space-between; margin-bottom: 1rem; }
    .top-actions .asset-selector, .top-actions .referral-link, .top-actions .balance-display { display: none; }
    .mobile-nav { display: flex; }
    .notification-overlay { bottom: 85px; width: 95%; max-width: none; }
    .deposit-card { padding: 1rem; gap: 1rem; }
    .dep-value { font-size: 1.1rem; }
    .btn-detail { display: none; }
    .btn-bottom-connect { margin-bottom: 5rem; }
    
    .card { padding: 1.25rem; }
    .big-value { font-size: 2rem; }
}

/* --- Hero Slider Styles --- */
.hero-slider {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.slides-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    width: 33.333%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.slide-content {
    max-width: 60%;
    z-index: 2;
}

.slide-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slide-desc {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slide-btn {
    padding: 0.8rem 1.8rem;
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--neon-green-shadow);
    transition: 0.3s;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.6);
}

.slide-visual {
    position: relative;
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.visual-element {
    width: 200px;
    height: 200px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--neon-green), #a8ffca);
    opacity: 0.15;
    filter: blur(40px);
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.visual-icon {
    font-size: 5rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 15px var(--neon-green));
    z-index: 2;
    animation: float-slow 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(10deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 2.5rem;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 30px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .slide { flex-direction: column; text-align: center; padding: 2rem 1.5rem; justify-content: center; }
    .slide-content { max-width: 100%; margin-bottom: 2rem; }
    .slide-title { font-size: 1.75rem; }
    .slide-visual { width: 100%; height: 120px; }
    .visual-icon { font-size: 3rem; }
    .visual-element { width: 120px; height: 120px; }
    .slider-dots { left: 50%; transform: translateX(-50%); }
}
/* --- HYBRIX PRO SPECIAL COMPONENTS --- */

/* Contract Progress Bar */
.contract-progress {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--glass-border);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-dim);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), #a8ffca);
    box-shadow: 0 0 10px var(--neon-green-glow);
    transition: width 1s ease-in-out;
}

/* AI Trade Log */
.trade-log-container {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    height: 120px;
    overflow-y: auto;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.log-entry {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--neon-green);
    opacity: 0.8;
}

.log-entry.sell { color: var(--red); }
.log-entry.time { color: var(--text-dim); margin-right: 5px; }

/* Rabbit Game Component */
.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.rabbit-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.1s;
    user-select: none;
}

.rabbit-container:active {
    transform: scale(0.92);
}

.rabbit-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 20px var(--neon-green-glow));
}

.tap-effect {
    position: absolute;
    color: var(--neon-green);
    font-weight: 800;
    pointer-events: none;
    animation: tap-fade-up 0.8s ease-out forwards;
    z-index: 10;
}

@keyframes tap-fade-up {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.energy-section {
    width: 100%;
    max-width: 300px;
}

.energy-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 0.5rem;
    border: 1px solid var(--glass-border);
}

.energy-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff8800);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

/* Rank & Network Components */
.rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.rank-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.rank-card.locked { opacity: 0.5; filter: grayscale(1); }
.rank-card.active { border-color: var(--gold); background: rgba(243, 186, 47, 0.05); }

.rank-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.rank-name { font-weight: 700; font-size: 1.1rem; display: block; }
.rank-bonus { font-size: 0.85rem; color: var(--gold); display: block; margin-top: 0.5rem; }

/* Upgrade Popup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-content {
    background: #0d1218;
    border: 1px solid var(--neon-green);
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--neon-green);
    color: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: var(--neon-green-shadow);
}

.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; }
.modal-desc { color: var(--text-dim); margin-bottom: 2rem; line-height: 1.5; }

.modal-actions { display: flex; flex-direction: column; gap: 1rem; }
.btn-upgrade {
    background: var(--neon-green);
    color: #000;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--neon-green-shadow);
}

.btn-later {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
}

/* Swap UI */
.swap-card {
    max-width: 400px;
    margin: 0 auto;
}

.swap-input-group {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.input-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.input-row { display: flex; justify-content: space-between; align-items: center; }
.input-row input { background: transparent; border: none; font-size: 1.5rem; color: #fff; width: 60%; outline: none; font-weight: 700; }
.token-select { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.4rem 0.8rem; border-radius: 10px; cursor: pointer; }

.swap-divider {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -10px 0;
    position: relative;
    z-index: 2;
}

.swap-icon-btn {
    width: 36px;
    height: 36px;
    background: #1a1f26;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
}

/* Mission Grid */
.mission-list { display: flex; flex-direction: column; gap: 1rem; }
.mission-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-info h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.m-info p { font-size: 0.75rem; color: var(--text-dim); }
.m-reward { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.btn-m-action { background: rgba(0, 255, 136, 0.1); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.2); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.75rem; font-weight: 600; cursor: pointer; }
