.operation-panel { position: relative; width: min(100%, 540px); margin-inline: auto; overflow: hidden; border: 1px solid rgba(206, 15, 110, 0.18); border-radius: 30px; background: rgba(255, 255, 255, 0.94); box-shadow: var(--shadow-elevated); }
.operation-topbar { min-height: 58px; padding: 14px 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--border); background: #FFFFFF; }
.operation-topbar > span { display: flex; gap: 5px; }
.operation-topbar i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.operation-topbar i:first-child { background: var(--primary); }
.operation-topbar strong { color: var(--text-strong); font-size: 0.82rem; }
.operation-topbar small { justify-self: end; color: var(--success); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.operation-body { padding: 24px; display: grid; gap: 14px; background: linear-gradient(180deg, #FFF 0%, #FCF6F9 100%); }
.operation-command, .operation-engine, .operation-result { border-radius: 18px; }
.operation-command { width: 88%; margin-left: auto; padding: 16px; color: #FFFFFF; background: var(--gradient-primary); }
.operation-command span { display: block; margin-bottom: 5px; color: rgba(255, 255, 255, 0.74); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.operation-command p { margin: 0; color: #FFFFFF; font-size: 0.88rem; line-height: 1.55; }
.operation-engine { width: 94%; padding: 18px; border: 1px solid var(--border); background: #FFFFFF; }
.engine-brand { display: flex; align-items: center; gap: 10px; }
.engine-brand > svg { width: 38px; height: 38px; padding: 8px; border-radius: 12px; fill: none; stroke: #FFFFFF; stroke-width: 1.5; background: var(--gradient-primary); }
.engine-brand span { display: grid; }
.engine-brand strong { color: var(--text-strong); font-family: var(--font-title); font-size: 0.9rem; }
.engine-brand small { color: var(--text-muted); font-size: 0.68rem; }
.engine-progress { height: 5px; margin: 15px 0; overflow: hidden; border-radius: 999px; background: var(--primary-soft); }
.engine-progress span { width: 78%; height: 100%; display: block; border-radius: inherit; background: var(--gradient-primary); animation: enginePulse 2.6s ease-in-out infinite; }
.operation-engine ul { padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; list-style: none; }
.operation-engine li { padding: 10px 8px; display: grid; justify-items: center; gap: 6px; border-radius: 12px; color: var(--text-secondary); background: var(--surface-soft); font-size: 0.63rem; font-weight: 700; text-align: center; }
.operation-engine li svg { width: 18px; height: 18px; fill: none; stroke: var(--primary); stroke-width: 1.8; }
.operation-result { padding: 15px 17px; border: 1px solid rgba(11, 143, 99, 0.18); background: rgba(11, 143, 99, 0.06); }
.operation-result span, .operation-result strong, .operation-result small { display: block; }
.operation-result span { color: var(--success); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.operation-result strong { margin-top: 4px; color: var(--text-strong); font-size: 0.9rem; }
.operation-result small { margin-top: 2px; color: var(--text-muted); font-size: 0.68rem; }
.operation-network { padding: 14px 18px 18px; display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; background: #FFFFFF; }
.operation-network span { padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--text-secondary); background: var(--surface-soft); font-size: 0.64rem; font-weight: 750; }
.floating-card { position: absolute; z-index: 2; min-width: 176px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(206, 15, 110, 0.16); border-radius: 16px; background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-light); animation: floatCard 5s ease-in-out infinite; }
.floating-card-one { top: 116px; left: -54px; }
.floating-card-two { right: -46px; bottom: 88px; animation-delay: -2.4s; }
.floating-card > svg { width: 34px; height: 34px; padding: 8px; border-radius: 11px; fill: none; stroke: var(--primary); stroke-width: 1.8; background: var(--primary-soft); }
.floating-card span { display: grid; }
.floating-card strong { color: var(--text-strong); font-size: 0.78rem; }
.floating-card small { color: var(--text-muted); font-size: 0.65rem; }
@keyframes enginePulse { 0%, 100% { width: 60%; opacity: 0.76; } 50% { width: 92%; opacity: 1; } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
