/* Control System Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

body.control-system-theme {
    font-family: 'Orbitron', 'Inter', monospace;
}

body.control-system-theme .logo-icon {
    display: none;
}

body.control-system-theme .logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff41 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

body.control-system-theme .tagline {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

body.control-system-theme .theme-label {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.control-system-theme .theme-label i {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .theme-select {
    background: rgba(0, 10, 20, 0.95);
    border: 2px solid #00ff41;
    border-radius: 2px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        inset 0 0 10px rgba(0, 255, 65, 0.1),
        0 0 10px rgba(0, 255, 65, 0.2);
}

body.control-system-theme .theme-select:focus {
    border-color: #00d4ff;
    box-shadow: 
        inset 0 0 15px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.4);
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

body.control-system-theme .theme-select:hover {
    background: rgba(0, 15, 25, 1);
    box-shadow: 
        inset 0 0 15px rgba(0, 255, 65, 0.15),
        0 0 15px rgba(0, 255, 65, 0.3);
}

body.control-system-theme .recommendation-banner {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
    position: relative;
    overflow: hidden;
}

body.control-system-theme .recommendation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    animation: scanline 3s linear infinite;
}

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

body.control-system-theme .recommendation-banner i {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

body.control-system-theme .recommendation-banner strong {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

body.control-system-theme .calculator-card,
body.control-system-theme .results-card {
    background: rgba(0, 10, 20, 0.95);
    border: 2px solid #00ff41;
    border-radius: 4px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.2),
        inset 0 0 30px rgba(0, 255, 65, 0.05),
        0 0 60px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

body.control-system-theme .calculator-card::before,
body.control-system-theme .results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    animation: scanline 2s linear infinite;
}

body.control-system-theme .calculator-card:hover,
body.control-system-theme .results-card:hover {
    border-color: #00d4ff;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 40px rgba(0, 212, 255, 0.08),
        0 0 80px rgba(0, 0, 0, 0.9);
}

body.control-system-theme .section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    border-bottom: 2px solid #00ff41;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

body.control-system-theme .input-group label {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

body.control-system-theme .input-group label i {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .input-field,
body.control-system-theme select.input-field {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ff41;
    border-radius: 2px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    box-shadow: 
        inset 0 0 10px rgba(0, 255, 65, 0.1),
        0 0 10px rgba(0, 255, 65, 0.2);
}

body.control-system-theme .input-field:focus,
body.control-system-theme select.input-field:focus {
    border-color: #00d4ff;
    box-shadow: 
        inset 0 0 15px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.4);
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

body.control-system-theme .input-field::placeholder {
    color: rgba(0, 255, 65, 0.4);
}

body.control-system-theme .mode-btn,
body.control-system-theme .trip-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ff41;
    border-radius: 2px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.1);
}

body.control-system-theme .mode-btn:hover,
body.control-system-theme .trip-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 
        inset 0 0 15px rgba(0, 212, 255, 0.2),
        0 0 15px rgba(0, 212, 255, 0.3);
}

body.control-system-theme .mode-btn.active,
body.control-system-theme .trip-btn.active {
    background: rgba(0, 255, 65, 0.2);
    border-color: #00ff41;
    color: #00ff41;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 65, 0.3),
        0 0 25px rgba(0, 255, 65, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

body.control-system-theme .slider {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ff41;
    box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.1);
}

body.control-system-theme .slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, #00ff41 0%, #00d4ff 100%);
    border: 2px solid #00ff41;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.8),
        inset 0 0 10px rgba(0, 255, 65, 0.3);
}

body.control-system-theme .slider::-moz-range-thumb {
    background: linear-gradient(135deg, #00ff41 0%, #00d4ff 100%);
    border: 2px solid #00ff41;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.8),
        inset 0 0 10px rgba(0, 255, 65, 0.3);
}

body.control-system-theme .slider-labels {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
}

body.control-system-theme .recommended-g {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .zone-comfortable {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.6) 0%, rgba(0, 200, 50, 0.6) 100%);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    color: #000000;
    border-right-color: rgba(0, 255, 65, 0.6);
}

body.control-system-theme .zone-comfortable span {
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
    color: #00ff41;
}

body.control-system-theme .zone-tolerable {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.6) 0%, rgba(255, 150, 0, 0.6) 100%);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    color: #000000;
    border-right-color: rgba(255, 193, 7, 0.6);
}

body.control-system-theme .zone-tolerable span {
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
    color: #ffc107;
}

body.control-system-theme .zone-extreme {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.6) 0%, rgba(200, 0, 0, 0.6) 100%);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    color: #ffffff;
    border-right-color: rgba(255, 0, 0, 0.6);
}

body.control-system-theme .zone-extreme span {
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
    color: #ff0000;
}

body.control-system-theme .zone.active {
    box-shadow: 0 0 20px currentColor;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

body.control-system-theme .calculate-btn {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    border-radius: 2px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.4),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    position: relative;
    overflow: hidden;
}

body.control-system-theme .calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.3), transparent);
    animation: scanline 2s linear infinite;
}

body.control-system-theme .calculate-btn:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.15);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

body.control-system-theme .calculate-btn:active {
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 65, 0.3),
        0 0 15px rgba(0, 255, 65, 0.4);
}

body.control-system-theme .result-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff41;
    border-radius: 2px;
    box-shadow: 
        inset 0 0 15px rgba(0, 255, 65, 0.1),
        0 0 15px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

body.control-system-theme .result-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    opacity: 0.5;
}

body.control-system-theme .result-box:hover {
    border-color: #00d4ff;
    box-shadow: 
        inset 0 0 20px rgba(0, 212, 255, 0.15),
        0 0 25px rgba(0, 212, 255, 0.4);
}

body.control-system-theme .result-primary {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

body.control-system-theme .result-secondary {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

body.control-system-theme .result-icon {
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.6));
}

body.control-system-theme .result-secondary .result-icon {
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.6));
}

body.control-system-theme .result-label {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

body.control-system-theme .result-value {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
    font-weight: 700;
    letter-spacing: 1px;
}

body.control-system-theme .result-subtitle {
    color: rgba(0, 255, 65, 0.6);
    font-family: 'Orbitron', monospace;
    font-weight: 500;
}

body.control-system-theme .comparison-title {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .comparison-bar {
    border: 2px solid #00ff41;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 65, 0.1),
        0 0 20px rgba(0, 255, 65, 0.2);
}

body.control-system-theme .traveler-segment {
    background: linear-gradient(135deg, #00ff41 0%, #00d4ff 100%);
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.3);
}

body.control-system-theme .earth-segment {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.3);
}

body.control-system-theme .segment-label {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

body.control-system-theme .comparison-note {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

body.control-system-theme #gForceValue {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
    font-weight: 700;
}

body.control-system-theme #footer {
    border-top: 2px solid #00ff41;
}

body.control-system-theme .footer-content {
    color: #00d4ff;
}

body.control-system-theme .footer-links a {
    color: #00d4ff;
}

body.control-system-theme .footer-links a:hover {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .footer-copyright {
    color: rgba(0, 255, 65, 0.6);
}

body.control-system-theme .journey-track {
    border: 2px solid #00ff41;
    border-radius: 4px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

body.control-system-theme .journey-path {
    background: linear-gradient(90deg, #00ff41 0%, #00d4ff 100%);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

body.control-system-theme .journey-progress {
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

body.control-system-theme .journey-label {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
}

body.control-system-theme .stat-label {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
}

body.control-system-theme .stat-value {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
}

body.control-system-theme .formula-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ff41;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

body.control-system-theme .formula-title {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

body.control-system-theme .formula-equation {
    background: rgba(0, 0, 0, 0.6);
    border-left-color: #00ff41;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    box-shadow: inset 0 0 15px rgba(0, 255, 65, 0.1);
}

body.control-system-theme .formula-explanation {
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
}

body.control-system-theme .formula-constants {
    background: rgba(0, 255, 65, 0.1);
    border-left-color: #00ff41;
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
}