.wgsp-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(17, 20, 38, 0.78);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    backdrop-filter: blur(12px);
}

.wgsp-header-inner {
    width: min(1120px, calc(100% - 40px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.wgsp-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    color: #f8fafc;
    font-weight: 700;
    text-decoration: none;
}

.wgsp-brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wgsp-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.wgsp-nav a {
    padding: 9px 12px;
    border-radius: 9px;
    color: #a8b2c5;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.wgsp-nav a:hover {
    color: #f8fafc;
    background: rgba(162, 155, 254, 0.1);
}

.wgsp-nav a.active {
    color: #fff;
    background: rgba(108, 92, 231, 0.22);
}

@media (max-width: 760px) {
    .wgsp-header-inner {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
    }

    .wgsp-brand span { display: none; }
    .wgsp-nav { gap: 3px; }
    .wgsp-nav a { padding: 8px; font-size: 0.78rem; }
}

@media (max-width: 430px) {
    .wgsp-header-inner { width: min(100% - 24px, 1120px); gap: 10px; }
    .wgsp-brand img { width: 38px; height: 38px; }
    .wgsp-nav { max-width: 290px; }
}
