/* Main Page Styles with Dynamic Theme Switching */

/* CSS Variables for Dynamic Theming */
:root {
    /* 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: #3b82f6;
    --primary-light: rgba(59, 130, 246, 0.1);
    --primary-gradient: linear-gradient(135deg, #3b82f6, #2563eb);
    --accent-color: #2563eb;
}

.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;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.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;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Network Selector in Nav - Enhanced Beautiful Design */
.nav-network-selector {
    position: relative;
    z-index: 1002;
}

.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: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 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(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    backdrop-filter: blur(20px);
    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(--primary-color), #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), #a855f7);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

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

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

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 4px;
}

.plan-price .period {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

.plan-description {
    color: #94a3b8;
    font-size: 14px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.plan-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color), #a855f7);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    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 rgba(var(--primary-rgb), 0.4);
}

.pricing-card.basic .plan-button {
    background: linear-gradient(135deg, #64748b, #475569);
}

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

/* Payment Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    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: #141416;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    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(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #a3a3a3;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.modal-body {
    padding: 24px;
}

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

.payment-info {
    color: #e2e8f0;
}

.plan-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    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(255, 255, 255, 0.2);
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
}

.payment-instructions h4 {
    color: #ffffff;
    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(--primary-color);
    color: white;
    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;
}

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

.payment-networks h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 16px;
}

.network-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.network-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-tab img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.network-tab:hover,
.network-tab.active {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary-color);
    color: #ffffff;
}

.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: #ffffff;
}

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

.address-field input,
.amount-field input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

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

.copy-btn:hover {
    background: #c026d3;
    transform: scale(1.05);
}

.payment-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    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;
    }
    
    .network-tabs {
        flex-direction: column;
    }
    
    .network-tab {
        justify-content: center;
    }
}

.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;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, var(--primary-light) 0%, transparent 70%);
    position: relative;
    transition: all 0.3s ease;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

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

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

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

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s 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: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

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

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

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
}

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

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

.network-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.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: 12px;
}

.network-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.network-details p {
    font-size: 14px;
    color: #9ca3af;
}

.network-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    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(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

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

.stat-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

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

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

.preview-opportunities {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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: #ffffff;
}

.opportunity-count {
    background: var(--primary-light);
    color: var(--primary-color);
    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(255, 255, 255, 0.03);
    border-radius: 8px;
}

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

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

/* Quick Stats Section */
.quick-stats {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

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

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    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: #9ca3af;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px auto;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-card p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Source Code Section */
.source-code-section {
    padding: 80px 0;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.source-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.source-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.source-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.source-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.source-info p {
    color: #9ca3af;
    font-size: 14px;
}

.source-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.source-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #9ca3af;
}

.source-stat i {
    color: var(--primary-color);
}

.source-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.source-link:hover {
    background: var(--primary-color);
    color: white;
}

.audit-section {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.audit-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.audit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
}

.audit-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.audit-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.audit-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.audit-status {
    font-size: 12px;
    color: #10b981;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--primary-light) 0%, transparent 70%);
}

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

.cta-subtitle {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 32px;
}

.btn-cta {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 20px 32px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-description {
    color: #9ca3af;
    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: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .nav-left {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-grid,
    .source-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .audit-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        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: 80px 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-card.new {
    border-color: var(--accent-color);
}

.feature-card.new::before {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-badge.new {
    background: var(--accent-light);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Networks Section */
.networks {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

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

.network-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.network-card.ethereum::before {
    background: linear-gradient(90deg, #627eea, #a855f7);
}

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

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

.network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.network-card.tron:hover {
    border-color: #ff0013;
}

.network-card.ethereum:hover {
    border-color: #627eea;
}

.network-card.solana:hover {
    border-color: #00d4ff;
}

.network-icon {
    margin-bottom: 24px;
}

.network-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.network-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.network-description {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.network-dexs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dex-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
}

.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: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-description {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid,
    .networks-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;
    }
    
    .network-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 24px;
    color: #d1d5db;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Tech Specs Section */
.tech-specs {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-specs h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.tech-spec {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.spec-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.audit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.audit-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.audit-info {
    flex: 1;
}

.audit-name {
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.audit-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

/* Advanced Trading Preview (Hero Visual) */
.advanced-trading-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

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

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

.preview-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.preview-title p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

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

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

.profit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    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, #627eea, #a855f7);
}

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

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

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

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

.profit-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.profit-info {
    flex: 1;
}

.profit-network {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.profit-status {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.profit-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
}

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

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

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

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

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

.combined-metrics .metric-large .metric-label {
    font-size: 14px;
    color: #9ca3af;
    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(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-grid .small-metric .metric-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-activity {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.activity-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    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(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    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: #d1d5db;
    font-weight: 500;
}

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

.activity-time {
    font-size: 11px;
    color: #9ca3af;
    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;
    }
}

/* Advanced Trading Networks Section */
.live-performance-dashboard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

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

.dashboard-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

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

.performance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.network-performance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.ethereum-card::before {
    background: linear-gradient(90deg, #627eea, #a855f7);
}

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

.network-performance-card:hover::before {
    opacity: 1;
}

.network-performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solana-card:hover {
    border-color: #00d4ff;
}

.ethereum-card:hover {
    border-color: #627eea;
}

.tron-card:hover {
    border-color: #ff0013;
}

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

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

.network-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
}

.network-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.network-info p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.performance-badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-badge.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.performance-badge.trending {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.performance-badge.profitable {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-stats {
    margin-bottom: 24px;
}

.primary-stat {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.primary-stat .stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
    display: block;
}

.primary-stat .stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
    display: block;
}

.primary-stat .stat-trend {
    font-size: 12px;
    font-weight: 600;
}

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

.secondary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-stat {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mini-stat .value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

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

.opportunity-preview {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

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

.preview-header span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

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

.opportunity-samples {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sample-opp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.sample-opp .pair {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #d1d5db;
}

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

.network-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.network-comparison {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.network-comparison h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.chart-metric {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-label {
    min-width: 80px;
    font-size: 14px;
    color: #d1d5db;
    font-weight: 500;
}

.bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.bar {
    height: 24px;
    border-radius: 6px;
    transition: width 0.8s ease;
    position: relative;
}

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

.bar.ethereum {
    background: linear-gradient(90deg, #627eea, #a855f7);
}

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

.bar-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

/* Responsive Design for Networks Section */
@media (max-width: 1024px) {
    .performance-metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .live-performance-dashboard {
        padding: 24px;
    }
    
    .network-performance-card {
        padding: 24px;
    }
    
    .secondary-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .bar-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bar-container {
        width: 100%;
    }
    
    .comparison-chart {
        gap: 24px;
    }
}

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

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    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: #9ca3af;
    font-weight: 500;
    font-size: 13px;
}

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

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

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

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

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

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.select-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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(--primary-color);
    border-color: var(--primary-color);
}

.gas-speed, .fee-speed {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.gas-price, .fee-price {
    font-size: 10px;
    color: #d1d5db;
    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(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.toggle-switch input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    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: #e5e7eb;
    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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.perf-card.total-roi {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.1);
}

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

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

.perf-header span {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.perf-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    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: #9ca3af;
}

/* 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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.market-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.market-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.market-change {
    font-size: 11px;
    color: #9ca3af;
}

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

/* Manual Tokens */
.manual-tokens {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.token-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.token-search input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    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(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #9ca3af;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* 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%;
    }
}