    
        :root {
            --fire-red: #dc143c;
            --aura-purple: #7000ff;
            --arctic-white: #ffffff;
            --node-dark: #080c14;
        }

        body {
            background-color: var(--node-dark);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            color: var(--arctic-white);
        }

        .fw-900 { font-weight: 900; }
        .font-monospace { font-family: 'Courier New', Courier, monospace !important; }
        .extra-small { font-size: 0.7rem; }
        .tracking-tighter { letter-spacing: -2px; }
        .tracking-widest { letter-spacing: 2px; }
        
        /* Glassmorphism Over Dark */
        .glass-panel-dark {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Hero Engine Background */
        .hero-engine {
            background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.15) 0%, rgba(8, 12, 20, 1) 70%);
            padding: 100px 0;
            position: relative;
        }

        /* Deployment Card Styling */
        .deployment-card {
            border-radius: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(145deg, rgba(220, 20, 60, 0.2) 0%, rgba(10, 10, 13, 1) 100%);
            border: 1px solid rgba(220, 20, 60, 0.4);
        }
        .hvr-grow:hover { transform: scale(1.01); }

        .bg-fire-red { background-color: var(--fire-red) !important; }
        .text-fire-red { color: var(--fire-red) !important; }
        .shadow-glow-red { box-shadow: 0 0 30px rgba(220, 20, 60, 0.5); }

        /* Animations */
        @keyframes pulse-red {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.4); opacity: 0.4; }
            100% { transform: scale(1); opacity: 1; }
        }
        .beacon-led-red-pulse {
            width: 10px; height: 10px;
            background-color: var(--fire-red);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 15px var(--fire-red);
            animation: pulse-red 1.5s infinite;
        }

        .hub-item-glass {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .hub-item-glass:hover {
            background: rgba(220, 20, 60, 0.2);
            border-color: var(--fire-red);
            transform: translateY(-5px);
        }
		
			.hover-row:hover {
				background: rgba(255, 255, 255, 0.02) !important;
			}

			.status-indicator-dot {
				width: 4px;
				height: 20px;
				border-radius: 2px;
				box-shadow: 0 0 10px currentColor;
			}

			.fw-900 {
				font-weight: 900;
			}

			.transition {
				transition: all 0.2s ease;
			}
			.hover-white:hover {
				color: white !important;
			}
			.hover-100:hover {
				opacity: 1 !important;
			}

			/* Custom Scrollbar for the table */
			.table-responsive::-webkit-scrollbar {
				height: 4px;
			}
			.table-responsive::-webkit-scrollbar-thumb {
				background: rgba(255, 255, 255, 0.1);
				border-radius: 10px;
			}
		
			/* Ignition flicker for the button when clicked */
			.fire-engagement i.fa-spin {
				animation: ignitionFlicker 0.3s infinite alternate !important;
			}

			@keyframes ignitionFlicker {
				from {
					opacity: 1;
					transform: scale(1.1) rotate(0deg);
				}
				to {
					opacity: 0.5;
					transform: scale(1.4) rotate(180deg);
					filter: hue-rotate(45deg) brightness(2);
				}
			}

			/* Row-wide highlight when a row is "active" */
			.hover-row:active {
				background: rgba(246, 173, 85, 0.1) !important;
				transition: background 0.1s;
			}

			@keyframes slideInUp {
				from {
					transform: translateY(100px);
					opacity: 0;
				}
				to {
					transform: translateY(0);
					opacity: 1;
				}
			}

			@keyframes pulse-red {
				0% {
					box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
				}
				70% {
					box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
				}
				100% {
					box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
				}
			}

			.firetip-intel-bubble {
				position: fixed;
				bottom: 30px;
				right: 30px;
				z-index: 9999;
				max-width: 350px;
				animation: slideInUp 0.6s ease-out;
				background: rgba(15, 15, 15, 0.95);
				backdrop-filter: blur(15px);
				border: 1px solid rgba(220, 53, 69, 0.3);
				border-radius: 1.5rem;
				box-shadow: 0 20px 40px rgba(0,0,0,0.5);
			}

			.intel-pulse {
				width: 10px;
				height: 10px;
				background: #dc3545;
				border-radius: 50%;
				display: inline-block;
				animation: pulse-red 2s infinite;
			}
		.pulse-animation {
    animation: flame-glow 2s infinite ease-in-out;
}

@keyframes flame-glow {
    0% { filter: drop-shadow(0 0 2px rgba(220, 20, 60, 0.4)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8)); transform: scale(1.05); }
    100% { filter: drop-shadow(0 0 2px rgba(220, 20, 60, 0.4)); transform: scale(1); }
}
.bg-fire-red { background-color: #ff3d3d !important; }
.text-fire-red { color: #ff3d3d !important; }
.border-fire-red { border-color: #ff3d3d !important; }

.glass-panel-dark {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.shadow-glow-fire {
    box-shadow: 0 0 20px rgba(255, 61, 61, 0.4);
}

.shadow-glow-fire-soft {
    box-shadow: 0 20px 80px rgba(255, 61, 61, 0.15);
}

.btn-fire-red {
    background-color: #ff3d3d;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-fire-red:hover {
    background-color: #e63535;
    box-shadow: 0 0 30px rgba(255, 61, 61, 0.6);
    transform: translateY(-2px);
}

.font-monospace {
    font-family: 'Courier New', Courier, monospace !important;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

	.dropdown-item:hover {
		background: rgba(220, 20, 60, 0.05) !important;
	}
	.extra-small {
		font-size: 0.65rem;
	}

:root {
    --fire-red: #dc143c;
    --fire-glow: rgba(220, 20, 60, 0.4);
}

/* Base Nav Button Styling */
.btn-fire-nav {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-fire-nav:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: var(--fire-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Primary Action Glow */
.bg-fire-red {
    background: linear-gradient(45deg, #ff4b2b, #dc143c) !important;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.bg-fire-red:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.6);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(8, 12, 20, 1);
        margin: 0 -1rem;
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
        border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    }
    .btn-fire-nav {
        width: 100%; /* Stack buttons on mobile */
        justify-content: space-between;
    }
}

/* Aesthetics & Animations */
.text-fire-red { color: var(--fire-red) !important; }

.animate-pulse {
    animation: pulse-red 2s infinite ease-in-out;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 2px var(--fire-red)); }
    50% { transform: scale(1.1); opacity: 0.8; filter: drop-shadow(0 0 8px var(--fire-red)); }
}

.navbar-toggler:focus { box-shadow: none; }
.fa-bars-staggered { font-size: 1.5rem; }

    /* Ensure text visibility on all screen types */
    .text-secondary { color: #a0a0a0 !important; }
    .form-control:focus {
        background-color: #1a1d24 !important;
        box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.25);
        border: 1px solid #dc143c !important;
    }
    
    /* Active State for Plan selection */
    .btn-check:checked + .btn-outline-danger {
        background-color: rgba(220, 20, 60, 0.1);
        border-color: #dc143c !important;
    }
    .btn-check:checked + .btn-outline-secondary {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: #ffffff !important;
    }
.sovereign-logo {
						
						
						animation: logo-glow 3s infinite ease-in-out;
					}
					.sovereign-flag {
						width: 50px;
						height: 30px;
						border-radius: 4px;
						border: 1px solid rgba(240, 173, 78, 0.4); /* Gold border for Sovereign status */
						box-shadow: 0 0 15px rgba(240, 173, 78, 0.2), inset 0 0 10px rgba(0,0,0,0.5);
						filter: saturate(1.2) contrast(1.1);
						animation: flag-glow 3s infinite ease-in-out;
					}
@keyframes logo-glow {
						0% {
							box-shadow: 0 0 5px rgba(255, 61, 61, 0.2);
							opacity: 0.8;
						}
						50% {
							box-shadow: 0 0 20px rgba(255, 61, 61, 0.5);
							opacity: 1;
						}
						100% {
							box-shadow: 0 0 5px rgba(255, 61, 61, 0.2);
							opacity: 0.8;
						}
					}
					@keyframes flag-glow {
						0% {
							box-shadow: 0 0 5px rgba(240, 173, 78, 0.2);
	opacity: 0.8;
						}
						50% {
							box-shadow: 0 0 20px rgba(240, 173, 78, 0.5);
	opacity: 1;
						}
						100% {
							box-shadow: 0 0 5px rgba(240, 173, 78, 0.2);
	opacity: 0.8;
						}
					}
				
    .status-badge-box {
        display: inline-flex;
        align-items: center;
        background: #0d0f12;
        padding: 8px 12px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }
    .status-icon-box {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        background: rgba(220, 20, 60, 0.1);
        border: 1px solid rgba(220, 20, 60, 0.3);
        border-radius: 3px;
    }
