.wd-topbar {
    width: 100%;
    background: rgba(8, 17, 31, 0.92);
    border-bottom: 1px solid rgba(170, 200, 255, 0.18);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10000;
}

.wd-topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wd-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.wd-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #62a8ff, #a78bfa);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 18px rgba(47, 118, 223, 0.28);
}

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

.wd-nav a {
    color: #d7e7ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.wd-nav a:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(170,200,255,0.18);
    color: #ffffff;
}

.wd-nav a.wd-primary {
    background: linear-gradient(135deg, #2f76df, #a78bfa);
    color: #ffffff;
    border: 0;
}

.wd-footer {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 24px;
    color: #a9bad1;
    border-top: 1px solid rgba(170,200,255,0.18);
    font-size: 13px;
    line-height: 1.5;
}

.wd-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

.wd-footer strong {
    color: #ffffff;
}

.wd-footer a {
    color: #d7e7ff;
    text-decoration: none;
    font-weight: bold;
}

.wd-footer a:hover {
    text-decoration: underline;
}

.wd-footer-small {
    margin-top: 18px;
    color: #7f90a8;
    font-size: 12px;
}

@media (max-width: 760px) {
    .wd-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .wd-nav {
        justify-content: flex-start;
    }

    .wd-footer-grid {
        grid-template-columns: 1fr;
    }
}
