:root {
    --bg-main: #0c0c0e;
    --bg-card: #16161a;
    --border-color: rgba(255, 255, 255, 0.05);
    --text-primary: #f5f5f7;
    --text-secondary: #8e8e93;
    --accent-color: #30d158;
    --accent-glow: rgba(48, 209, 88, 0.15);
    --danger-color: #ff453a;
}
body#zlkbbody {
    background-color: var(--bg-main) !important;
    color: var(--text-primary) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.fly-header {
    background: rgba(22, 22, 26, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}
.layui-nav {
    background: none !important;
}
.layui-nav .layui-nav-item a {
    color: var(--text-primary) !important;
}
.px-banner {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(180deg, rgba(22, 22, 26, 0.5) 0%, rgba(12, 12, 14, 0) 100%);
    border-bottom: 1px solid var(--border-color);
}
.px-banner h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.px-banner p {
    font-size: 14px;
    color: var(--text-secondary);
}
.px-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.px-bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.px-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(48, 209, 88, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
}
.px-span-12 { grid-column: span 12; }
.px-span-8 { grid-column: span 8; }
.px-span-4 { grid-column: span 4; }
.px-span-6 { grid-column: span 6; }
@media (max-width: 768px) {
    .px-bento-grid { display: flex; flex-direction: column; gap: 16px; }
    .px-span-8, .px-span-4, .px-span-6 { grid-column: span 12; }
}
.px-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: #000 !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.px-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
.px-badge {
    background: var(--accent-glow);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}
.layui-table {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}
.layui-table th {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-secondary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}
.layui-table td {
    border-bottom: 1px solid var(--border-color) !important;
}
.layui-table-hover {
    background: rgba(255, 255, 255, 0.02) !important;
}
.layui-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 6px !important;
}
.layui-input:focus {
    border-color: var(--accent-color) !important;
}
.layui-form-label {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px 0 0 6px !important;
}
