* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background-color: rgb(17 17 27);
    color: #e0e0e0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* --- Header --- */
.hub-header {
    display: flex;
    align-items: center;
    background: rgb(6 6 11);
    padding: 0 16px;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.hub-logo {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* --- Content wrapper & container --- */
.hub-content-wrapper {
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
}

.hub-container {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
}
