.elementor-21 .elementor-element.elementor-element-98e4968{--display:flex;}.elementor-21 .elementor-element.elementor-element-98e4968:not(.elementor-motion-effects-element-type-background), .elementor-21 .elementor-element.elementor-element-98e4968 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A0F1A;}.elementor-21 .elementor-element.elementor-element-653ce74{--display:flex;}.elementor-21 .elementor-element.elementor-element-653ce74:not(.elementor-motion-effects-element-type-background), .elementor-21 .elementor-element.elementor-element-653ce74 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A0F1A;}/* Start custom CSS for html, class: .elementor-element-5f30448 *//* ===== SCADA SIMULATOR ===== */
.s23-scada {
  background: #060d1a;
  border-radius: 20px;
  border: 1px solid rgba(0,255,200,0.15);
  overflow: hidden;
  font-family: 'Courier New', monospace;
  direction: ltr;
}

/* TOP BAR */
.s23-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a1628;
  border-bottom: 1px solid rgba(0,255,200,0.1);
  padding: 8px 20px;
  gap: 12px;
}
.s23-topbar-left { display: flex; align-items: center; gap: 8px; }
.s23-topbar-center { display: flex; flex-direction: column; align-items: center; }
.s23-topbar-right { display: flex; align-items: center; gap: 16px; }
.s23-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #00ffc8;
  box-shadow: 0 0 8px #00ffc8;
  animation: s23-dot-blink 1s infinite alternate;
}
@keyframes s23-dot-blink {
  from { opacity: 0.5; box-shadow: 0 0 4px #00ffc8; }
  to { opacity: 1; box-shadow: 0 0 12px #00ffc8; }
}
.s23-topbar-label { color: #64748b; font-size: 11px; }
.s23-topbar-val { color: #00ffc8; font-size: 11px; font-weight: bold; }
.s23-topbar-time { color: #00ffc8; font-size: 16px; font-weight: bold; letter-spacing: 2px; line-height: 1; }
.s23-topbar-date { color: #64748b; font-size: 9px; margin-top: 2px; }
.s23-alarm-counter {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.2);
  color: #ff6464; font-size: 11px;
  padding: 3px 10px; border-radius: 20px;
  transition: all 0.3s;
}
.s23-alarm-counter.active {
  background: rgba(255,60,60,0.2);
  box-shadow: 0 0 10px rgba(255,60,60,0.3);
  animation: s23-alarm-pulse 0.8s infinite alternate;
}
@keyframes s23-alarm-pulse {
  from { border-color: rgba(255,60,60,0.3); }
  to { border-color: rgba(255,60,60,0.8); box-shadow: 0 0 16px rgba(255,60,60,0.4); }
}
.s23-comm-indicator { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.s23-comm-bar {
  width: 4px; background: #00ffc8; border-radius: 1px; opacity: 0.4;
  animation: s23-comm-wave 1.2s infinite ease-in-out;
}
.s23-comm-bar:nth-child(1) { height: 4px; animation-delay: 0s; }
.s23-comm-bar:nth-child(2) { height: 8px; animation-delay: 0.15s; }
.s23-comm-bar:nth-child(3) { height: 12px; animation-delay: 0.3s; }
.s23-comm-bar:nth-child(4) { height: 16px; animation-delay: 0.45s; }
@keyframes s23-comm-wave {
  0%,100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* MAIN LAYOUT */
.s23-main {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  min-height: 520px;
}
.s23-panel {
  padding: 14px;
  border-right: 1px solid rgba(0,255,200,0.08);
  overflow-y: auto;
}
.s23-panel:last-child { border-right: none; }
.s23-panel-center { border-right: 1px solid rgba(0,255,200,0.08); }
.s23-panel-title {
  font-size: 10px; font-weight: bold;
  color: #00ffc8; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,255,200,0.1);
}
.s23-group-label {
  font-size: 9px; color: #64748b;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 8px; margin-top: 4px;
}

/* MOTORS */
.s23-motors { display: flex; flex-direction: column; gap: 8px; }
.s23-motor-row {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,255,200,0.08);
  border-radius: 8px; padding: 8px;
  transition: all 0.3s;
}
.s23-motor-row.running {
  border-color: rgba(0,255,200,0.3);
  background: rgba(0,255,200,0.04);
  box-shadow: 0 0 10px rgba(0,255,200,0.08);
}
.s23-motor-info { display: flex; justify-content: space-between; margin-bottom: 6px; }
.s23-motor-name { font-size: 10px; color: #94a3b8; }
.s23-motor-rpm { font-size: 10px; color: #00ffc8; font-weight: bold; }
.s23-motor-controls { display: flex; gap: 6px; margin-bottom: 6px; }
.s23-btn-start {
  flex: 1; padding: 4px; border: none; border-radius: 4px;
  background: rgba(0,255,200,0.15); color: #00ffc8;
  font-size: 9px; font-weight: bold; cursor: pointer;
  transition: all 0.2s; font-family: monospace;
}
.s23-btn-start:hover { background: rgba(0,255,200,0.3); }
.s23-btn-stop {
  flex: 1; padding: 4px; border: none; border-radius: 4px;
  background: rgba(255,60,60,0.1); color: #ff6464;
  font-size: 9px; font-weight: bold; cursor: pointer;
  transition: all 0.2s; font-family: monospace;
}
.s23-btn-stop:hover { background: rgba(255,60,60,0.25); }
.s23-motor-bar-wrap {
  height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden;
}
.s23-motor-bar {
  height: 100%; width: 0%; background: #00ffc8;
  border-radius: 2px; transition: width 1.5s ease;
  box-shadow: 0 0 6px #00ffc8;
}

/* VALVES */
.s23-valves { display: flex; flex-direction: column; gap: 8px; }
.s23-valve-row { display: flex; align-items: center; gap: 8px; }
.s23-valve-name { font-size: 10px; color: #94a3b8; width: 70px; flex-shrink: 0; }
.s23-valve-toggle {
  width: 36px; height: 18px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; cursor: pointer; position: relative;
  transition: all 0.3s;
}
.s23-valve-toggle.open {
  background: rgba(0,255,200,0.2);
  border-color: #00ffc8;
  box-shadow: 0 0 8px rgba(0,255,200,0.3);
}
.s23-valve-knob {
  position: absolute; top: 2px; left: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #64748b; transition: all 0.3s;
}
.s23-valve-toggle.open .s23-valve-knob {
  left: 20px; background: #00ffc8;
}
.s23-valve-pct { font-size: 9px; color: #64748b; width: 40px; }
.s23-valve-toggle.open + .s23-valve-pct { color: #00ffc8; }

/* SETPOINTS */
.s23-setpoints, .s23-pulse-ctrl { display: flex; flex-direction: column; gap: 8px; }
.s23-setpoint-row, .s23-pulse-row {
  display: flex; align-items: center; gap: 6px;
}
.s23-sp-label { font-size: 9px; color: #64748b; width: 85px; flex-shrink: 0; }
.s23-sp-range {
  flex: 1; height: 3px; accent-color: #00ffc8;
  background: rgba(255,255,255,0.05);
}
.s23-sp-val { font-size: 10px; color: #00ffc8; font-weight: bold; width: 32px; text-align: right; }

/* JET PULSE CANNONS */
.s23-pulse-cannons {
  display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap;
}
.s23-cannon {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,200,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.s23-cannon span { font-size: 8px; color: #64748b; font-weight: bold; }
.s23-cannon.firing {
  background: rgba(0,255,200,0.25);
  border-color: #00ffc8;
  box-shadow: 0 0 12px rgba(0,255,200,0.5);
  transform: scale(1.1);
}
.s23-cannon.firing span { color: #00ffc8; }

/* P&ID SVG */
.s23-pid { padding: 8px; }
.s23-pid-svg { width: 100%; max-height: 340px; }

/* GAUGES */
.s23-gauges { display: flex; gap: 6px; margin-bottom: 12px; }
.s23-gauge-wrap { flex: 1; text-align: center; }
.s23-gauge-svg { width: 100%; }
.s23-gauge-arc { transition: stroke-dasharray 0.8s ease; }
.s23-gauge-label { font-size: 9px; color: #64748b; margin-top: 2px; }

/* TREND */
.s23-trend-wrap { margin-bottom: 12px; }
.s23-trend-label { font-size: 9px; color: #64748b; margin-bottom: 4px; }
.s23-trend-canvas {
  width: 100%; border-radius: 6px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(0,255,200,0.08);
  display: block;
}

/* I/O TABLE */
.s23-io-table {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(0,255,200,0.06);
  font-size: 9px;
}
.s23-io-header {
  display: grid; grid-template-columns: 60px 1fr 50px;
  background: rgba(0,255,200,0.06);
  padding: 4px 8px; color: #64748b;
  font-size: 8px; letter-spacing: 1px;
}
.s23-io-row {
  display: grid; grid-template-columns: 60px 1fr 50px;
  padding: 4px 8px; color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  align-items: center;
}
.s23-io-addr { color: #64748b; font-size: 8px; }
.s23-io-bit {
  text-align: center; width: 24px;
  padding: 1px 4px; border-radius: 3px;
  background: rgba(255,60,60,0.1); color: #ff6464;
  font-weight: bold;
  transition: all 0.3s;
}
.s23-io-bit.active {
  backgrou/* End custom CSS */