@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #121824;
    --bg-card: rgba(26, 34, 52, 0.55);
    --bg-input: #1a2336;
    --bg-input-focus: #212c44;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-hover: #4f46e5;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --accent-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    --sidebar-width: 280px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) var(--bg-primary);
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--border-hover);
    border-radius: 20px;
    border: 2px solid var(--bg-primary);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* 1. 顶部太空舱状态诊断条 HUD Topbar */
.hud-topbar {
    height: 60px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 110;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-mini {
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.logo-icon-mini i {
    font-size: 14px;
    color: white;
}

.logo-text-glitch {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    position: relative;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.topbar-tag {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--accent-light);
    background-color: rgba(99, 102, 241, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.topbar-ticker {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    overflow: hidden;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-ticker {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.topbar-clock {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 顶部与控制台的通用 ctrl-btn */
.ctrl-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.ctrl-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

/* 2. 三栏容器与分栏 HUD 主架构 */
.hud-container {
    display: flex;
    flex: 1;
    width: 100vw;
    height: calc(100vh - 60px);
    overflow: hidden;
    position: relative;
    background-color: var(--bg-primary);
}

/* 左侧服务树面板 */
.hud-left-tree {
    width: 260px;
    min-width: 260px;
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 90;
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.hud-left-tree.collapsed {
    margin-left: -260px;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

/* 左侧搜索 */
.search-sidebar-wrapper {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
}

.search-wrapper {
    position: relative;
}

.search-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
}

.search-wrapper input {
    width: 100%;
    padding: 8px 10px 8px 34px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    transition: all 0.2s ease;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-input-focus);
}

/* 导航树菜单 */
.tree-menu {
    flex: 1;
    overflow-y: auto;
    padding: 12px 8px;
}

.tree-section {
    margin-bottom: 14px;
}

.tree-section-header {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tree-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tree-item:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.tree-item.active {
    color: white;
    background: var(--accent-gradient);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.tree-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* 右侧监测与快捷看板 */
.hud-right-actions {
    width: 320px;
    min-width: 320px;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 90;
    transition: margin-right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.hud-right-actions.collapsed {
    margin-right: -320px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

/* 右侧监测指标 */
.sys-metrics-panel {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
}

.m-lbl {
    color: var(--text-muted);
}

.m-val {
    color: var(--text-primary);
    font-weight: 500;
}

/* 极速卡片网络 */
.quick-micro-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow-y: auto;
    flex: 1;
}

.quick-micro-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-micro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(168, 85, 247, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.quick-micro-card:hover::before {
    opacity: 1;
}

.quick-micro-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
}

.quick-micro-card i {
    font-size: 18px;
    color: var(--accent-light);
    z-index: 2;
    transition: transform 0.3s ease;
}

.quick-micro-card:hover i {
    transform: scale(1.15);
}

.quick-micro-card span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 2;
}

.quick-micro-card:hover span {
    color: var(--text-primary);
}

/* 中央主工作区 */
.hud-center-workspace {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 80;
}

#content-area {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

/* 首页大区仪表盘样式 */
.view-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 520px;
}

/* 首页 HUD 诊断面板组 */
.hud-diagnostics-grid {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hud-diagnostics-grid {
        flex-direction: column;
    }
}

.audit-log-terminal {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    height: 120px;
    overflow-y: auto;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audit-log-line {
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.4;
}

.audit-time {
    color: var(--text-muted);
}

.audit-tag {
    color: var(--accent-light);
    font-weight: bold;
}

.perf-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 120px;
}

.perf-card {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.perf-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.perf-val {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--accent-light);
    font-weight: bold;
}

.category-group {
    margin-bottom: 30px;
}

.category-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-title i {
    color: var(--accent-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 10px;
}

.tool-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.15);
    background-color: rgba(26, 34, 52, 0.65);
}

.tool-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    border: 1px solid var(--border-color);
}

.tool-card:hover .tool-card-icon {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
}

.tool-card:hover .tool-card-icon i {
    color: white;
}

.tool-card-icon i {
    font-size: 16px;
    color: var(--accent-light);
    transition: all 0.25s ease;
}

.tool-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.tool-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.tool-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    padding: 2px 6px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. 工具视图公共容器样式 */
.tool-view {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--box-shadow-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
}

.tool-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.tool-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-info-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
}

.tool-info-icon i {
    font-size: 16px;
    color: white;
}

.tool-info-text h3 {
    font-size: 16px;
    font-weight: 600;
}

.tool-info-text p {
    color: var(--text-secondary);
    font-size: 12px;
}

.tool-actions {
    display: flex;
    gap: 10px;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: var(--border-hover);
}

.btn-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background-color: var(--danger);
    color: white;
}

.btn i {
    font-size: 14px;
}

.btn-icon-only {
    padding: 10px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label span {
    font-weight: normal;
    color: var(--text-muted);
}

.textarea-control, .input-control, .select-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.textarea-control:focus, .input-control:focus, .select-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-input-focus);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.textarea-control.code, .input-control.code {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 13px;
}

textarea.textarea-control {
    min-height: 200px;
    resize: vertical;
}

/* Layout Utilities for Tools */
.tool-playground {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.tool-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
    min-height: 400px;
}

@media (max-width: 900px) {
    .tool-split {
        grid-template-columns: 1fr;
    }
}

.panel {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: rgba(10, 14, 23, 0.3);
    overflow: hidden;
}

.panel-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.panel-footer {
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

/* JSON Viewer Tree */
.json-tree {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow-y: auto;
    padding: 8px;
    user-select: text;
}

.json-line {
    margin-left: 20px;
    position: relative;
}

.json-expanded::before {
    content: "▼";
    position: absolute;
    left: -15px;
    top: 1px;
    font-size: 9px;
    color: var(--text-muted);
    cursor: pointer;
}

.json-collapsed::before {
    content: "▶";
    position: absolute;
    left: -15px;
    top: 1px;
    font-size: 9px;
    color: var(--text-muted);
    cursor: pointer;
}

.json-key {
    color: #ff79c6;
    font-weight: 500;
}

.json-string {
    color: #f1fa8c;
}

.json-number {
    color: #bd93f9;
}

.json-boolean {
    color: #ffb86c;
}

.json-null {
    color: #8be9fd;
}

/* CSS Generator Tool specific */
.css-preview-box {
    width: 100%;
    height: 200px;
    background-color: #0b0f19;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.css-preview-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

#shadow-target {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 8px;
    transition: box-shadow 0.1s ease, border-radius 0.1s ease;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-item {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.slider-item label {
    font-size: 13px;
    color: var(--text-secondary);
}

.slider-item input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    height: 6px;
    border-radius: 3px;
    outline: none;
}

.slider-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: all 0.1s ease;
}

.slider-item input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-item span {
    font-size: 13px;
    font-family: 'Fira Code', monospace;
    text-align: right;
    color: var(--text-primary);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}

.toast {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--box-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast.success {
    border-left-color: var(--success);
}

.toast.error {
    border-left-color: var(--danger);
}

.toast i {
    font-size: 16px;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Text tools list converter styling */
.text-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

/* Random Password Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    user-select: none;
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--accent-gradient);
    border-color: transparent;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.strength-meter {
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 16px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
}

.strength-bar.weak {
    width: 25%;
    background-color: var(--danger);
}

.strength-bar.fair {
    width: 50%;
    background-color: var(--warning);
}

.strength-bar.good {
    width: 75%;
    background-color: var(--info);
}

.strength-bar.strong {
    width: 100%;
    background-color: var(--success);
}

/* Timestamp conversions styles */
.timestamp-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.timestamp-now {
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    color: var(--accent-light);
    font-weight: 600;
}

/* RegEx Highlight Overlay */
.regex-container {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.regex-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: transparent;
    pointer-events: none;
    z-index: 1;
}

.regex-textarea {
    position: relative;
    z-index: 2;
    background: transparent !important;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.regex-match-highlight {
    background-color: rgba(245, 158, 11, 0.35);
    border-bottom: 1px dashed var(--warning);
    border-radius: 2px;
}

.regex-match-highlight:nth-child(even) {
    background-color: rgba(16, 185, 129, 0.3);
    border-bottom: 1px dashed var(--success);
}

/* Stats box for counters */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    text-align: center;
}

.stat-val {
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-light);
}

.stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Responsive sidebar toggle for mobile */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
}

@media (max-width: 768px) {
    aside {
        transform: translateX(-100%);
    }
    
    aside.open {
        transform: translateX(0);
    }
    
    main {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cyberpunk Interactive Console Styles */
.dashboard-hero-cyber {
    background: linear-gradient(135deg, #0d1220 0%, #131b2e 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.05), inset 0 0 20px rgba(99, 102, 241, 0.05);
}

.cyber-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0) 0%, rgba(99, 102, 241, 0.15) 50%, rgba(99, 102, 241, 0) 100%);
    animation: scanline-anim 6s linear infinite;
    pointer-events: none;
    z-index: 10;
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.8;
}

.cyber-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.cyber-status-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse-led 2s infinite;
}

.cyber-status-text {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cyber-ticker-wrap {
    margin-left: auto;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 3px 10px;
    display: flex;
    align-items: center;
}

.cyber-ticker {
    display: inline-block;
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--accent-light);
    animation: ticker-fade 1.5s infinite alternate;
}

.cyber-console {
    background-color: rgba(5, 8, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.console-body {
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.console-line {
    white-space: pre-wrap;
    word-break: break-all;
}

.hud-chat-input-box {
    background: rgba(13, 20, 35, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.theme-overclock .hud-chat-input-box {
    background: rgba(6, 14, 23, 0.7);
    border-color: rgba(16, 185, 129, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(16, 185, 129, 0.05);
}

.chat-input-row {
    display: flex;
    width: 100%;
}

#terminal-input {
    width: 100%;
    height: 20px;
    min-height: 20px;
    max-height: 120px;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    color: var(--text-primary);
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    padding: 0;
    overflow-y: hidden;
}

#terminal-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

body.theme-overclock #terminal-input::placeholder {
    color: rgba(16, 185, 129, 0.3);
}

.chat-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 8px;
    margin-top: 6px;
}

body.theme-overclock .chat-actions-row {
    border-top-color: rgba(16, 185, 129, 0.08);
}

.actions-left-group, .actions-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-action-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
    font-size: 13px;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

body.theme-overclock .chat-action-btn:hover {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-light);
}

.model-select-wrapper {
    position: relative;
}

.model-trigger {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: 'Fira Code', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.model-trigger:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

body.theme-overclock .model-trigger {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.12);
}

body.theme-overclock .model-trigger:hover {
    color: var(--accent-light);
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
}

.model-dropdown-list {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    min-width: 160px;
    z-index: 999;
    list-style: none;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
}

.model-dropdown-list.hidden {
    display: none !important;
}

.model-option {
    padding: 6px 12px;
    font-size: 11px;
    font-family: 'Fira Code', monospace;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.model-option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-light);
}

body.theme-overclock .model-option:hover {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-light);
}

.model-option.active {
    color: var(--text-primary);
    font-weight: bold;
    background: rgba(99, 102, 241, 0.15);
}

body.theme-overclock .model-option.active {
    color: white;
    background: rgba(16, 185, 129, 0.15);
}

.terminal-send-btn {
    background: #ef4444;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}

.terminal-send-btn:hover {
    background: #ff5555;
    transform: scale(1.06);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.55);
}

.terminal-send-btn.disabled {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

body.theme-overclock .terminal-send-btn {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

body.theme-overclock .terminal-send-btn:hover {
    background: #34d399;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.55);
}

body.theme-overclock .terminal-send-btn.disabled {
    background: rgba(16, 185, 129, 0.02) !important;
    border-color: rgba(16, 185, 129, 0.06);
    color: rgba(16, 185, 129, 0.15) !important;
}

.terminal-send-btn.generating {
    background: #ef4444 !important;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5) !important;
    animation: pulse-led 1.5s infinite;
}

body.theme-overclock .terminal-send-btn.generating {
    background: #10b981 !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5) !important;
}

.c-accent { color: var(--accent-light); font-weight: bold; }
.c-muted { color: var(--text-muted); }
.c-success { color: var(--success); }
.c-danger { color: var(--danger); }
.c-warning { color: var(--warning); }

/* Animation Keyframes */
@keyframes scanline-anim {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(260px); }
}

@keyframes pulse-led {
    0% { opacity: 0.6; box-shadow: 0 0 4px var(--success); }
    50% { opacity: 1; box-shadow: 0 0 12px var(--success); }
    100% { opacity: 0.6; box-shadow: 0 0 4px var(--success); }
}

@keyframes ticker-fade {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Neon style adjustments to Dashboard Cards */
.tool-card {
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

body.theme-overclock .tool-card::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.08));
}

.tool-card:hover::before {
    opacity: 1;
}

/* Overclock theme styles */
body.theme-overclock {
    --bg-primary: #04070b;
    --bg-secondary: #070e14;
    --bg-card: rgba(8, 18, 28, 0.65);
    --bg-input: #0a131b;
    --bg-input-focus: #0d1e2b;
    
    --accent: #10b981; /* Matrix Green */
    --accent-light: #34d399;
    --accent-hover: #059669;
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --accent-gradient-hover: linear-gradient(135deg, #059669 0%, #047857 100%);
    
    --text-primary: #e6f7ed;
    --text-secondary: #76a38b;
    --border-color: rgba(16, 185, 129, 0.12);
    --border-hover: rgba(16, 185, 129, 0.25);
}

body.theme-overclock .dashboard-hero-cyber {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.08), inset 0 0 20px rgba(16, 185, 129, 0.08);
}

body.theme-overclock .cyber-scanline {
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.15) 50%, rgba(16, 185, 129, 0) 100%);
}

body.theme-overclock .logo-icon {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

body.theme-overclock .nav-item.active {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Cyber Hero Grid layout */
.cyber-hero-grid {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 20px;
    align-items: center;
}

.cyber-hologram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: rgba(5, 8, 15, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 0 10px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

body.theme-overclock .cyber-hologram {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: inset 0 0 10px rgba(16, 185, 129, 0.1);
}

.holo-label {
    font-family: 'Fira Code', monospace;
    font-size: 8px;
    font-weight: bold;
    color: var(--accent-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Tactical HUD corner framing for panels and cards */
.panel, .tool-card {
    position: relative;
}

.panel::before, .tool-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.panel::after, .tool-card:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.tool-card::after {
    border-bottom: none;
    border-right: none;
}

.tool-card:hover::after {
    border-color: var(--accent-light);
    transform: scale(1.1);
}

/* Responsive sidebar controls hover styling */
.ctrl-btn:hover {
    color: var(--text-primary) !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .cyber-hero-grid {
        grid-template-columns: 1fr;
    }
    .cyber-hologram {
        display: none;
    }
}

.chat-action-btn.pulse-mic {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.15) !important;
    animation: mic-pulse-anim 1.5s infinite alternate !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4) !important;
}

@keyframes mic-pulse-anim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.12); opacity: 1; }
}

.gobang-container {
    display: inline-block;
    position: relative;
    padding: 10px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.gobang-board-panel {
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: visible;
}

.gobang-stage {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.gobang-mino-bot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 148px;
    flex-shrink: 0;
    padding-bottom: 8px;
}

.mino-bot-bubble {
    position: relative;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.92);
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(6px) scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
}

.mino-bot-bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mino-bot-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(99, 102, 241, 0.35);
}

.mino-bot-bubble::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.92);
    z-index: 1;
}

.mino-bot-bubble.threat {
    border-color: rgba(239, 68, 68, 0.55);
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.2);
    animation: bot-bubble-pulse 0.6s ease infinite alternate;
}

.mino-bot-bubble.threat::after {
    border-top-color: rgba(239, 68, 68, 0.55);
}

.mino-bot-bubble.win {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.2);
}

.mino-bot-avatar {
    width: 100px;
    height: 130px;
}

.mino-bot-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.25));
}

.mino-bot-name {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    opacity: 0.8;
}

/* 机器人状态动画 */
.gobang-mino-bot.bot-thinking .mino-eye {
    animation: mino-eye-blink 0.8s ease infinite;
}

.gobang-mino-bot.bot-taunt .mino-bot-avatar {
    animation: mino-bot-shake 0.45s ease;
}

.gobang-mino-bot.bot-threat .mino-eye {
    fill: #f97316;
}

.gobang-mino-bot.bot-threat .mino-bot-svg {
    filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.45));
}

.gobang-mino-bot.bot-win .mino-bot-avatar {
    animation: mino-bot-jump 0.6s ease;
}

.gobang-mino-bot.bot-win .mino-eye {
    fill: #22c55e;
}

.gobang-mino-bot.bot-lose .mino-eye {
    fill: #64748b;
}

.gobang-mino-bot.bot-lose .mino-bot-avatar {
    opacity: 0.65;
    transform: scale(0.96);
}

@media (max-width: 960px) {
    .gobang-stage {
        flex-direction: column;
        align-items: center;
    }
    .gobang-mino-bot {
        width: 100%;
        max-width: 280px;
    }
}

@keyframes mino-eye-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes mino-bot-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes mino-bot-jump {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
}

@keyframes bot-bubble-pulse {
    from { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15); }
    to { box-shadow: 0 4px 28px rgba(239, 68, 68, 0.35); }
}

body.theme-overclock .mino-bot-bubble {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}

body.theme-overclock .mino-bot-bubble::after {
    border-top-color: rgba(16, 185, 129, 0.35);
}

body.theme-overclock .mino-bot-svg {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.25));
}

body.theme-overclock .gobang-mino-bot.bot-threat .mino-bot-svg {
    filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.45));
}

body.theme-overclock .gobang-container {
    border-color: rgba(16, 185, 129, 0.08);
}

