body {
    background-color: #090d12;
}

.panel-glow {
    box-shadow: inset 0 1px 0 rgba(0, 229, 255, 0.06), 0 0 0 1px rgba(26, 37, 53, 0.8);
}

.btn-primary {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.35);
    color: #00e5ff;
    transition: all 0.18s;
}

.btn-primary:hover {
    background: rgba(0, 229, 255, 0.18);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
    background: rgba(90, 112, 128, 0.1);
    border: 1px solid rgba(90, 112, 128, 0.3);
    color: #5a7080;
    transition: all 0.18s;
}

.btn-secondary:hover {
    background: rgba(90, 112, 128, 0.2);
    color: #8aaabb;
}

.btn-danger {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #ff6b35;
    transition: all 0.18s;
}

.btn-danger:hover {
    background: rgba(255, 107, 53, 0.22);
    box-shadow: 0 0 14px rgba(255, 107, 53, 0.3);
}

.status-pill {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 2px;
}

.corner-tl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-top: 2px solid rgba(0, 229, 255, 0.45);
    border-left: 2px solid rgba(0, 229, 255, 0.45);
}

.corner-tr::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-top: 2px solid rgba(0, 229, 255, 0.45);
    border-right: 2px solid rgba(0, 229, 255, 0.45);
}

input[type="text"],
input[type="password"],
input[type="number"],
textarea {
    background: rgba(10, 16, 24, 0.9);
    border: 1px solid #1a2535;
    color: #c8dae4;
    transition: border-color 0.18s, box-shadow 0.18s;
    font-family: 'Share Tech Mono', monospace;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.08);
}

.section-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 229, 255, 0.5);
}

.log-entry {
    border-left: 2px solid #1a2535;
}

.log-entry:nth-child(odd) {
    background: rgba(255, 255, 255, 0.015);
}

#snapshotView {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: #39ff6e;
    background: rgba(0, 0, 0, 0.35);
}

/* scanline overlay on video */
.video-scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.12) 0px,
            rgba(0, 0, 0, 0.12) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
}