/* Custom Fonts */
body {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

/* Glassmorphism Background */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0a00 0%, #000000 100%);
    z-index: -1;
}

/* Neo-Nav */
.system-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to right, #fff, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Strategy Title */
.strategy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    text-align: center;
}

/* Tool Tag */
.tool-tag {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid #007bff;
    padding: 4px 16px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}

.tool-tag:hover {
    background: #007bff;
    color: white;
    box-shadow: 0 0 15px #007bff;
}

/* Dashboard Cards */
.visual-card, .data-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    font-weight: bold;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Step Boxes */
.protocol-body {
    padding: 20px;
}

.step-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.step-box.highlight {
    border: 1px solid rgba(255, 69, 0, 0.3);
    background: rgba(255, 69, 0, 0.05);
}

.step-num {
    color: #ff4500;
    font-family: 'Orbitron';
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pulse Animation */
.pulse {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

/* Buttons */
.btn-neo-orange {
    background: #ff4500;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    border: none;
}

.btn-neo-orange:hover {
    background: #ff6a00;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
    transform: translateY(-2px);
}