/*
Theme Name: Fluxpot Secure
Description: Fluxpot custom theme styles
Version: 1.0
Author: FluxPot
*/

html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

body {
    font-family: 'Courier New', Courier, monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

.flux-shell-header {
    width: 100%;
    background: #000;
    padding: 18px 0 8px;
}

.flux-shell-inner {
    width: min(1250px, calc(100% - 32px));
    margin: 0 auto;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    background: #050505;
    padding: 18px 20px 20px;
    box-sizing: border-box;
}

.flux-shell-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
}

.flux-shell-link {
    display: inline-block;
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #d8d8d8;
    background: #080808;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.flux-shell-link:hover {
    color: #00ff41;
    border-color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.15);
}

.flux-shell-link.active {
    color: #000;
    background: #39ff5a;
    border-color: #39ff5a;
    font-weight: 700;
    box-shadow: none;
}

.flux-shell-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.flux-shell-brand-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.flux-shell-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.flux-shell-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 6px;
}

.flux-shell-subtitle {
    font-size: 12px;
    color: #f2f2f2;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.flux-shell-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #39ff5a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
}

.flux-shell-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39ff5a;
    box-shadow: 0 0 10px rgba(57, 255, 90, 0.85);
    display: inline-block;
}

@media (max-width: 900px) {
    .flux-shell-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .flux-shell-status {
        margin-top: 4px;
    }
}

@media (max-width: 640px) {
    .flux-shell-inner {
        width: calc(100% - 20px);
        padding: 14px;
    }

    .flux-shell-nav {
        gap: 8px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .flux-shell-link {
        padding: 9px 12px;
        font-size: 11px;
    }

    .flux-shell-title {
        font-size: 20px;
    }

    .flux-shell-subtitle {
        font-size: 11px;
    }
}