/* WP BIOS Master Suite Pro - Ultra Modern Glassmorphism Theme */
.bios-app-wrapper {
    background: radial-gradient(circle at 50% 0%, #0c1527 0%, #060911 100%);
    color: #e2e8f0;
    border-radius: 16px;
    padding: 26px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 25px auto;
    box-sizing: border-box;
}

.bios-app-wrapper * {
    box-sizing: border-box;
}

.bios-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-symbol {
    font-size: 2.4rem;
    background: linear-gradient(135deg, #0284c7 0%, #0a172e 100%);
    border: 1px solid #38bdf8;
    padding: 8px 16px;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-title {
    color: #ffffff;
    margin: 0;
    font-size: 1.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.vip-version-tag {
    font-size: 0.72rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.brand-desc {
    color: #94a3b8;
    margin: 4px 0 0 0;
    font-size: 0.88rem;
}

.top-status-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge {
    background: rgba(17, 26, 44, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
}

.bios-search-bar-row {
    margin-bottom: 18px;
}

.search-input-wrap {
    position: relative;
    width: 100%;
}

.search-input-wrap .search-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #64748b;
}

.search-input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: #090f1a;
    border: 1px solid #1e293b;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.2s ease;
}

.search-input-wrap input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
    background: #0c1524;
}

.bios-category-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.bios-category-tabs {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.nav-tab-btn {
    background: #0f182a;
    border: 1px solid #1e293b;
    color: #94a3b8;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.nav-tab-btn:hover {
    background: #19253d;
    color: #ffffff;
    border-color: #38bdf8;
}

.nav-tab-btn.active {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.45);
}

.tab-panel-content {
    display: none;
    animation: fadeInSlide 0.2s ease-in-out;
}

.tab-panel-content.active {
    display: block;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-banner {
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.15) 0%, rgba(13, 21, 36, 0.4) 100%);
    border-left: 4px solid #38bdf8;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
}

.feature-banner h3 {
    margin: 0 0 4px 0;
    color: #38bdf8;
    font-size: 1.2rem;
}

.feature-banner p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.45;
}

.grid-layout-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

@media (max-width: 820px) {
    .grid-layout-2 {
        grid-template-columns: 1fr;
    }
}

.tool-panel-card {
    background: #0d1524;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-panel-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
}

.tool-panel-card h4 {
    margin: 0 0 8px 0;
    color: #f8fafc;
    font-size: 1.05rem;
}

.card-sub {
    font-size: 0.83rem;
    color: #94a3b8;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.upload-dropzone {
    border: 2px dashed #334155;
    border-radius: 10px;
    padding: 30px 16px;
    text-align: center;
    background: #080c14;
    margin: 12px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.upload-dropzone.mini-zone {
    padding: 18px 12px;
}

.upload-dropzone:hover {
    border-color: #38bdf8;
    background: #0e172a;
}

.upload-dropzone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.drop-text .drop-ico {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 6px;
}

.drop-text strong {
    display: block;
    color: #f1f5f9;
    font-size: 0.95rem;
}

.drop-text small {
    color: #64748b;
    font-size: 0.78rem;
}

.field-lbl {
    display: block;
    font-size: 0.84rem;
    color: #cbd5e1;
    margin-bottom: 5px;
    font-weight: 500;
}

.text-input-dark {
    width: 100%;
    padding: 10px 12px;
    background: #080c14;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #f8fafc;
    font-size: 0.9rem;
    outline: none;
}

.text-input-dark:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.25);
}

.btn-gradient-glow {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border: 1px solid #38bdf8;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-gradient-glow:hover {
    box-shadow: 0 6px 22px rgba(56, 189, 248, 0.6);
    transform: translateY(-1px);
}

.btn-solid-action {
    background: #1e293b;
    color: #38bdf8;
    border: 1px solid #38bdf8;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-solid-action:hover {
    background: #38bdf8;
    color: #000000;
}

.center-btn-row {
    text-align: center;
    margin: 22px 0 10px 0;
}

.output-result-panel {
    margin-top: 20px;
    padding: 20px;
    background: #090f1a;
    border-radius: 10px;
    border: 1px solid #1e293b;
}

.mini-out {
    padding: 12px;
    background: #080c14;
    border: 1px solid #1e293b;
    border-radius: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
}

.status-highlight {
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

.status-highlight.success { border-color: #10b981; }
.status-highlight.warn { border-color: #f59e0b; }
.status-highlight.error { border-color: #ef4444; }

.key-pill-box {
    background: #080c14;
    border: 1px solid #1e293b;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 1.35rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}

.btn-mini-copy {
    background: #1e293b;
    border: 1px solid #334155;
    color: #cbd5e1;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-mini-copy:hover {
    background: #334155;
    color: #fff;
}

.bios-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.bios-data-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
}

.bios-data-table td:first-child {
    color: #94a3b8;
    width: 38%;
}

.bios-data-table td:last-child {
    color: #f8fafc;
    font-weight: 600;
}

.status-summary-bar {
    background: #090f1a;
    border: 1px solid #1e293b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hex-viewer-screen {
    background: #05080f;
    border: 1px solid #1e293b;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Consolas', monospace;
    font-size: 0.82rem;
    color: #38bdf8;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre;
    line-height: 1.4;
}

.section-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}
