/* Main Page Styles — CryptoDo-Inspired Theme */

/* CSS Variables for Dynamic Theming */
:root {
    /* CryptoDo Design System */
    --bg-primary: #050B1E;
    --bg-secondary: #0A1628;
    --bg-card: rgba(8, 20, 48, 0.7);
    --bg-card-hover: rgba(12, 28, 60, 0.85);
    --border-card: rgba(0, 229, 255, 0.12);
    --border-card-hover: rgba(0, 229, 255, 0.35);
    --text-primary: #FFFFFF;
    --text-secondary: #7B8CA8;
    --text-muted: #4A5B75;
    --cyan: #00E5FF;
    --cyan-light: rgba(0, 229, 255, 0.1);
    --cyan-glow: rgba(0, 229, 255, 0.25);
    --glass-blur: blur(20px);
    --glass-border: 1px solid var(--border-card);
    --glass-bg: var(--bg-card);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    /* TRON Theme (Default) */
    --primary-color: #ef4444;
    --primary-light: rgba(239, 68, 68, 0.1);
    --primary-gradient: linear-gradient(135deg, #ef4444, #dc2626);
    --accent-color: #dc2626;
    --network-name: 'TRON';
}

/* Theme Classes */
.tron-theme {
    --primary-color: #ef4444;
    --primary-light: rgba(239, 68, 68, 0.1);
    --primary-gradient: linear-gradient(135deg, #ef4444, #dc2626);
    --accent-color: #dc2626;
}

.ethereum-theme {
    --primary-color: #00E5FF;
    --primary-light: rgba(0, 229, 255, 0.1);
    --primary-gradient: linear-gradient(135deg, #00E5FF, #0080FF);
    --accent-color: #0080FF;
    --primary-color-rgb: 0, 229, 255;
}

.solana-theme {
    --primary-color: #8b5cf6;
    --primary-light: rgba(139, 92, 246, 0.1);
    --primary-gradient: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --accent-color: #7c3aed;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* Watermark Background Text */
body::before {
    content: 'ETHEREUM TRADING BOT';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 12vw;
    font-weight: 900;
    color: rgba(0, 229, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0.05em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(5, 11, 30, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

a.logo {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon .logo-svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    animation: logoSpin 4s linear infinite;
}

@keyframes logoSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Network Selector in Nav — Hidden in CryptoDo style */
.nav-network-selector {
    display: none;
}

.network-current {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 140px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.network-current::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.network-current:hover::before {
    left: 100%;
}

.network-current:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--primary-color);
}

.network-current.active {
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 255, 255, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.network-current .network-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.network-current:hover .network-icon {
    transform: scale(1.1) rotate(5deg);
}

.network-current .network-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.dropdown-icon {
    margin-left: auto;
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.network-current.active .dropdown-icon {
    transform: rotate(180deg) scale(1.1);
    color: #ffffff;
}

.network-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 12px;
    overflow: hidden;
}

.network-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.network-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.network-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 4px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.network-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.network-option:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.network-option:hover::before {
    width: 4px;
}

.network-option .network-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.network-option:hover .network-icon {
    transform: scale(1.1) rotate(-5deg);
}

.network-option span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.network-option:hover span {
    color: var(--primary-color);
    transform: translateX(2px);
}

/* Network-specific hover colors */
.network-option[data-network="tron"]:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
}

.network-option[data-network="tron"]:hover::before {
    background: linear-gradient(90deg, #ef4444, transparent);
}

.network-option[data-network="tron"]:hover span {
    color: #ef4444;
}

.network-option[data-network="ethereum"]:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
}

.network-option[data-network="ethereum"]:hover::before {
    background: linear-gradient(90deg, #3b82f6, transparent);
}

.network-option[data-network="ethereum"]:hover span {
    color: #3b82f6;
}

.network-option[data-network="solana"]:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
}

.network-option[data-network="solana"]:hover::before {
    background: linear-gradient(90deg, #a855f7, transparent);
}

.network-option[data-network="solana"]:hover span {
    color: #a855f7;
}

/* Network Selector Animations */
@keyframes networkPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }
}

.network-current.active {
    animation: networkPulse 2s infinite;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 229, 255, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 36px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    position: relative;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), #0080FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-card-hover);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.popular {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

.pricing-card.popular::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 18px;
    color: var(--cyan);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 4px;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.06);
}

.feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature i {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
}

.feature span {
    color: #B0BEC5;
    font-size: 14px;
    font-weight: 500;
}

.plan-button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--cyan-glow);
}

.pricing-card.basic .plan-button {
    background: linear-gradient(135deg, var(--text-secondary), var(--text-muted));
    color: var(--text-primary);
}

.pricing-card.enterprise .plan-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--bg-primary);
}

/* Payment Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 11, 30, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 229, 255, 0.12);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.payment-modal {
    max-width: 600px;
    width: 90vw;
}

.payment-info {
    color: #B0BEC5;
}

.plan-summary {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
}

.payment-instructions h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 16px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.instruction-step .step-number {
    width: 24px;
    height: 24px;
    background: var(--cyan);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.instruction-step .step-text {
    font-size: 14px;
    line-height: 1.5;
}

.wallet-address-input {
    margin: 32px 0;
}

.wallet-address-input h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 16px;
}

.address-input-field {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.address-input-field input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    background: #0D1B2A;
    border: 1px solid #1A2A44;
    border-radius: 10px;
    color: #E0E6ED;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.address-input-field input:focus {
    border-color: #00E5FF;
}

.address-input-field input::placeholder {
    color: #4A5568;
}

.confirm-address-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #00E5FF, #0088FF);
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.confirm-address-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.3);
}

.confirm-address-btn:active {
    transform: translateY(0);
}

.address-confirmed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 10px;
}

.address-confirmed .confirmed-icon {
    width: 22px;
    height: 22px;
    color: #00E5FF;
    flex-shrink: 0;
}

.address-confirmed .confirmed-text {
    font-size: 14px;
    color: #00E5FF;
    font-weight: 600;
}

.address-confirmed .confirmed-addr {
    font-size: 12px;
    color: #7B8CA8;
    font-family: 'JetBrains Mono', monospace;
    word-break: break-all;
    margin-top: 4px;
}

.payment-address {
    margin: 32px 0;
}

.address-container,
.amount-container {
    margin-bottom: 20px;
}

.address-container label,
.amount-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.address-field,
.amount-field {
    display: flex;
    gap: 8px;
}

.address-field input,
.amount-field input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 12px;
    background: var(--cyan);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    box-shadow: 0 0 16px var(--cyan-glow);
    transform: scale(1.05);
}

.payment-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 32px;
}

.payment-warning i {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-warning div {
    font-size: 13px;
    line-height: 1.5;
    color: #fbbf24;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .plan-price .amount {
        font-size: 36px;
    }
    
    .address-input-field input {
        font-size: 13px;
        padding: 12px 14px;
    }

    .address-input-field {
        flex-direction: column;
    }

    .confirm-address-btn {
        padding: 12px 20px;
    }

    .address-confirmed {
        padding: 14px 16px;
    }

    .address-confirmed .confirmed-text {
        font-size: 13px;
    }

    .address-confirmed .confirmed-addr {
        font-size: 11px;
    }

    .payment-modal {
        width: 95vw;
    }

    .plan-summary {
        padding: 16px;
    }

    .address-field input,
    .amount-field input {
        font-size: 12px;
        padding: 10px 12px;
        min-width: 0;
    }

    .payment-warning div {
        font-size: 12px;
    }
}

.network-option .network-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.network-option span {
    font-weight: 600;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), #0080FF);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar Buttons — CryptoDo style */
.nav-btn-ghost {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius-md);
    color: var(--cyan);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-ghost:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--cyan);
    box-shadow: 0 0 16px var(--cyan-glow);
}

.nav-btn-primary {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border: none;
    border-radius: var(--radius-md);
    color: #050B1E;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--cyan-glow);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 128, 255, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--cyan);
}

.badge-new {
    background: var(--cyan);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 20px 32px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--cyan-glow);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-glow {
    opacity: 0.3;
}

/* Ghost Button — CryptoDo style */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(0, 229, 255, 0.06);
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cta-info {
    display: flex;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--cyan);
    font-size: 16px;
}

/* ===== Compact Dashboard ===== */
.compact-dashboard {
    margin-top: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.04);
}

.compact-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.compact-dash-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.compact-dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.compact-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.compact-stat {
    text-align: center;
    padding: 10px 6px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.compact-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.compact-stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-dash-profits {
    display: flex;
    gap: 10px;
}

.compact-profit {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.06);
    transition: all 0.3s ease;
}

.compact-profit:hover {
    background: rgba(0, 229, 255, 0.07);
    border-color: rgba(0, 229, 255, 0.15);
}

.compact-profit-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.compact-profit-name {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 28px;
}

.compact-profit-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
}

.compact-profit-rate {
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    margin-left: auto;
}

/* ===== 3D Ethereum Scene ===== */
.eth-3d-scene {
    position: absolute;
    top: 0;
    right: -10%;
    width: 55%;
    height: 100%;
    z-index: 0;
}

.eth-3d-scene canvas,
.eth-3d-scene spline-viewer {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

/* Hide Spline watermark */
.eth-3d-scene spline-viewer::part(logo) {
    display: none !important;
}

.eth-3d-scene spline-viewer {
    --spline-watermark-display: none;
}

/* Crop bottom of spline scene to hide watermark */
.eth-3d-scene {
    clip-path: inset(0 0 60px 0);
    margin-bottom: -60px;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.orbit-ring-1 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    animation: orbitSpin 20s linear infinite;
}

.orbit-ring-2 {
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(60deg);
    animation: orbitSpin 28s linear infinite reverse;
    border-color: rgba(0, 128, 255, 0.06);
}

.orbit-ring-3 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(-30deg);
    animation: orbitSpin 15s linear infinite;
    border-color: rgba(0, 229, 255, 0.05);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

/* Floating Stat Bubbles */
.float-stat {
    position: absolute;
    z-index: 10;
    background: rgba(8, 20, 48, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    padding: 8px 14px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.float-stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-stat-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
}

.float-stat-1 {
    top: 8%;
    left: 5%;
    animation: floatBubble 4s ease-in-out infinite;
}

.float-stat-2 {
    top: 12%;
    right: 5%;
    animation: floatBubble 4.5s ease-in-out infinite 0.5s;
}

.float-stat-3 {
    bottom: 15%;
    left: 3%;
    animation: floatBubble 3.8s ease-in-out infinite 1s;
}

.float-stat-4 {
    bottom: 10%;
    right: 2%;
    animation: floatBubble 4.2s ease-in-out infinite 1.5s;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Visual */
.hero-visual {
    position: static;
}

.network-preview {
    background: var(--glass-bg);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.network-preview:hover {
    border-color: var(--border-card-hover);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.12);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.network-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-network-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.network-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.network-details p {
    font-size: 14px;
    color: var(--text-secondary);
}

.network-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(0, 229, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 12px;
    color: #10b981;
}

.stat-change.positive {
    color: #10b981;
}

.preview-opportunities {
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    padding-top: 16px;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.opportunity-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.opportunity-count {
    background: var(--cyan-light);
    color: var(--cyan);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opportunity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-sm);
}

.opportunity-pair {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #B0BEC5;
}

.opportunity-profit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

/* Quick Stats Section */
.quick-stats {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.015) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-card-hover);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    flex-shrink: 0;
    box-shadow: 0 0 16px var(--cyan-glow);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--cyan);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Ethereum Network Section */
.eth-network-section {
    padding: 60px 0;
}

.eth-network-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.eth-network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), #0080FF, var(--cyan));
}

.eth-network-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.eth-network-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eth-net-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
}

.eth-network-identity h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.eth-network-identity p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.eth-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.eth-live-badge span {
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}

.eth-network-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.eth-net-stat {
    text-align: center;
    padding: 16px 12px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.eth-net-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.eth-net-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eth-network-pairs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.eth-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
}

.eth-pair-profit {
    color: #10b981;
    font-weight: 600;
}

.eth-network-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eth-network-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--cyan-glow);
}

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.015) 100%);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(8px);
    border-color: var(--border-card-hover);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.08);
}

.tech-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 0 16px var(--cyan-glow);
}

.tech-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tech-item-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.tech-tag {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--cyan);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-item-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.tech-3d {
    height: 450px;
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.eth-spin-container {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eth-spin-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.04) 45%, transparent 70%);
    animation: ethPulse 3s ease-in-out infinite;
}

.eth-spin-icon {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 60px rgba(0, 229, 255, 0.15));
    animation: ethRotateY 6s linear infinite;
    transform-style: preserve-3d;
}

@keyframes ethRotateY {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes ethPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-hero {
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

.about-stats {
    padding: 40px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-stat-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    border-color: var(--border-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.08);
}

.about-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.faq-list {
    max-width: 800px;
    margin: 36px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-card-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   Documentation Page Styles
   ============================================ */

.doc-hero {
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

.doc-hero .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.doc-nav-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.doc-nav-link {
    padding: 8px 18px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
}

.doc-nav-link:hover,
.doc-nav-link.active {
    color: var(--cyan);
    border-color: var(--border-card-hover);
    background: rgba(0, 229, 255, 0.06);
}

.doc-content-section {
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.06);
}

.doc-content-section:last-of-type {
    border-bottom: none;
}

.doc-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: var(--glass-blur);
    margin-bottom: 20px;
}

.doc-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-card h3 i {
    color: var(--cyan);
    width: 22px;
    height: 22px;
}

.doc-card p,
.doc-card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.doc-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.doc-card ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.doc-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

.doc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.doc-code-block {
    background: rgba(5, 11, 30, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 16px 0;
    overflow-x: auto;
}

.doc-code-block code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.doc-code-block .code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.doc-endpoint {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    backdrop-filter: var(--glass-blur);
}

.doc-endpoint-method {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    margin-right: 10px;
}

.doc-endpoint-method.get {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.doc-endpoint-method.post {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.doc-endpoint-path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.doc-endpoint-desc {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.doc-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.doc-security-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.doc-security-card:hover {
    border-color: var(--border-card-hover);
    transform: translateY(-4px);
}

.doc-security-card i {
    width: 36px;
    height: 36px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.doc-security-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.doc-security-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About & Docs Responsive */
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-value {
        font-size: 26px;
    }

    .doc-grid-2 {
        grid-template-columns: 1fr;
    }

    .doc-security-grid {
        grid-template-columns: 1fr;
    }

    .doc-nav-bar {
        gap: 6px;
    }

    .doc-nav-link {
        padding: 6px 14px;
        font-size: 12px;
    }

    .faq-question {
        padding: 14px 18px;
    }

    .faq-question span {
        font-size: 14px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-3d {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border: none;
    border-radius: var(--radius-md);
    padding: 20px 32px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--cyan-glow);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    background: rgba(5, 11, 30, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 16px var(--cyan-glow);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }

    .eth-3d-scene {
        position: absolute;
        top: 0;
        right: -10%;
        width: 60%;
        height: 100%;
        opacity: 0.3;
        z-index: 0;
        clip-path: none;
        margin-bottom: 0;
    }

    .compact-dashboard {
        text-align: left;
    }

    .compact-dash-profits {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-info {
        justify-content: center;
    }

    .float-stat {
        display: none;
    }

    .features-3d {
        display: none;
    }

    .tech-layout {
        grid-template-columns: 1fr;
    }
    
    .nav-left {
        gap: 16px;
    }
}

/* Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    position: relative;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-hamburger {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-left {
        min-width: 0;
        flex-shrink: 1;
        overflow: hidden;
    }
    
    .logo-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #050B1E !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 9999;
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        display: flex !important;
    }
    
    .nav-menu .nav-link {
        font-size: 18px;
        padding: 12px 24px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        display: block;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--cyan);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-btn-primary {
        font-size: 16px;
        padding: 14px 36px;
        margin-top: 8px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .eth-3d-scene {
        opacity: 0.15;
        width: 80%;
        right: -20%;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .compact-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .compact-dash-profits {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-3d,
    .cta-3d {
        display: none;
    }

    .tech-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tech-3d {
        height: 280px;
        order: -1;
    }

    .eth-network-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .eth-network-pairs {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .network-current {
        min-width: 100px;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-3d {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 500px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), #0080FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-card-hover);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.08);
}

.feature-card.new {
    border-color: rgba(0, 229, 255, 0.25);
}

.feature-card.new::before {
    background: linear-gradient(90deg, var(--cyan), #00FF88);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    margin-bottom: 24px;
    font-size: 24px;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--cyan);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-badge.new {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.25);
    color: #00FF88;
}

/* How it Works Section */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, rgba(0, 128, 255, 0.02) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cyan), #0080FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 24px var(--cyan-glow);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 24px;
}

.step:last-child .step-arrow {
    display: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-arrow {
        position: static;
        transform: rotate(90deg);
        margin: 16px 0;
    }
    
    .eth-network-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .eth-network-pairs {
        grid-template-columns: 1fr;
    }

    .tech-layout {
        grid-template-columns: 1fr;
    }

    .tech-3d {
        height: 300px;
    }

    .features-3d {
        display: none;
    }

    .cta-3d {
        display: none;
    }
}
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px 0 0 0;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    margin-top: 24px;
}

.btn-secondary {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    color: #B0BEC5;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--text-primary);
}

/* Advanced Trading Preview (Hero Visual) */
.advanced-trading-preview {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.advanced-trading-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
    border-color: var(--border-card-hover);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.preview-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.preview-title p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.multi-network-profits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.profit-card {
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solana-profit::before {
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

.ethereum-profit::before {
    background: linear-gradient(90deg, var(--cyan), #0080FF);
}

.tron-profit::before {
    background: linear-gradient(90deg, #ff0013, #ff6b35);
}

.profit-card:hover::before {
    opacity: 1;
}

.profit-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 229, 255, 0.06);
}

.profit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.profit-logo {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.profit-info {
    flex: 1;
}

.profit-network {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.profit-status {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profit-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 6px;
}

.profit-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.profit-details {
    display: flex;
    gap: 12px;
}

.profit-details .speed,
.profit-details .success {
    font-size: 11px;
    color: #B0BEC5;
    background: rgba(0, 229, 255, 0.06);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
}

.combined-metrics {
    margin-bottom: 28px;
}

.combined-metrics .metric-large {
    text-align: center;
    margin-bottom: 20px;
    padding: 24px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.combined-metrics .metric-large .metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
    display: block;
}

.combined-metrics .metric-large .metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
}

.combined-metrics .metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.combined-metrics .metric-trend.positive {
    color: #10b981;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.metric-grid .small-metric {
    text-align: center;
    padding: 16px 12px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.metric-grid .small-metric .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 6px;
    display: block;
}

.metric-grid .small-metric .metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-activity {
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.activity-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.pulse-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-indicator span {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: rgba(0, 229, 255, 0.06);
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activity-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.activity-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-pair {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #B0BEC5;
    font-weight: 500;
}

.activity-profit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

.activity-time {
    font-size: 11px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    min-width: 32px;
    text-align: right;
}

/* Responsive Design for Hero Visual */
@media (max-width: 1024px) {
    .multi-network-profits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .advanced-trading-preview {
        padding: 24px;
    }
    
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .profit-card {
        padding: 16px;
    }
    
    .combined-metrics .metric-large .metric-value {
        font-size: 28px;
    }
    
    .activity-item {
        padding: 10px;
    }
}

/* Trading Panel Styles */
.trading-settings {
    padding: 20px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.08);
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.setting-group {
    margin-bottom: 24px;
}

.setting-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #B0BEC5;
    margin-bottom: 8px;
}

.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(0, 229, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.mode-selector input[type="radio"] {
    display: none;
}

.mode-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
}

.mode-selector input[type="radio"]:checked + .mode-option {
    background: var(--cyan);
    color: var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0, 229, 255, 0.2);
}

.input-with-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--cyan);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 229, 255, 0.3);
}

.number-input {
    width: 80px;
    padding: 8px 12px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    text-align: center;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.select-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
}

.gas-selector, .priority-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gas-selector input[type="radio"], .priority-selector input[type="radio"] {
    display: none;
}

.gas-option, .fee-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gas-selector input[type="radio"]:checked + .gas-option,
.priority-selector input[type="radio"]:checked + .fee-option {
    background: var(--cyan);
    border-color: var(--cyan);
}

.gas-speed, .fee-speed {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.gas-price, .fee-price {
    font-size: 10px;
    color: #B0BEC5;
    font-family: 'JetBrains Mono', monospace;
}

.toggle-switches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-switch input[type="checkbox"] {
    width: 40px;
    height: 20px;
    appearance: none;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked {
    background: var(--cyan);
}

.toggle-switch input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked::after {
    left: 22px;
}

.toggle-switch label {
    font-size: 13px;
    color: #B0BEC5;
    cursor: pointer;
}

/* Performance Overview */
.performance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.perf-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.perf-card.total-roi {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
}

.perf-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.perf-header i {
    color: var(--cyan);
}

.perf-header span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.perf-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.perf-change {
    font-size: 12px;
    font-weight: 500;
}

.perf-change.positive {
    color: #10b981;
}

.perf-subtext {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Market Section */
.market-section {
    margin-bottom: 30px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.market-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.market-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.market-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.market-change {
    font-size: 11px;
    color: var(--text-secondary);
}

.market-change.positive {
    color: #10b981;
}

/* Manual Tokens */
.manual-tokens {
    padding: 20px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.token-search {
    position: relative;
    margin-bottom: 16px;
}

.token-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.token-search input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.add-token-btn {
    width: 100%;
    padding: 10px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px dashed rgba(0, 229, 255, 0.15);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-token-btn:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mode-selector {
        grid-template-columns: 1fr;
    }
    
    .gas-selector, .priority-selector {
        grid-template-columns: 1fr;
    }
    
    .performance-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .input-with-slider {
        flex-direction: column;
        align-items: stretch;
    }
    
    .number-input {
        width: 100%;
    }
}

/* ============================================
   CryptoDo-Style Glow & Animation Additions
   ============================================ */

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(0, 229, 255, 0.15);
    }
    50% {
        border-color: rgba(0, 229, 255, 0.35);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Apply glow to hero visual */
.advanced-trading-preview {
    animation: borderGlow 4s ease-in-out infinite;
}

/* Subtle glow on popular pricing card */
.pricing-card.popular {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Gradient animated border for section badges */
.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scrollbar styling for CryptoDo theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.3);
}