body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

.elite-nav {
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.elite-logo {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-family: 'Orbitron';
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    font-family: 'Orbitron';
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover { color: #FF4500; }

.strategy-title {
    font-family: 'Orbitron';
    background: linear-gradient(to bottom, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.tool-badge {
    border: 1px solid #007bff;
    padding: 4px 12px;
    color: #007bff;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.description-block {
    color: #ff8c00;
    line-height: 1.8;
    border-left: 2px solid #FF4500;
    padding-left: 20px;
}

.table-visual-container {
    position: relative;
    background: #0a0a0a;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    overflow: hidden;
}

.visual-header {
    font-family: 'Orbitron';
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.scanline {
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, transparent 0%, rgba(255,69,0,0.05) 50%, transparent 100%);
    position: absolute;
    top: -100px;
    left: 0;
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -100px; }
    100% { top: 100%; }
}